Query a parameter (postgresql.conf setting) like “max_connections”
You can use SHOW: SHOW max_connections; This returns the currently effective setting. Be aware that it can differ from the setting in postgresql.conf as there are a multiple ways to set run-time parameters in PostgreSQL. To reset the “original” setting from postgresql.conf in your current session: RESET max_connections; However, not applicable to this particular setting. … Read more