Skip to content

PG_RELOAD_CONF()

Reload the system-level configuration after modifying one or more parameters.

pg_reload_conf();

For example:

yellowbrick=# select pg_reload_conf();
 pg_reload_conf 
----------------
 t
(1 row)

This function returns a BOOLEAN data type.

Typically, you would run this function after modifying one or more parameters that do not require a database restart, such as idle_session_timeout.

See also ALTER SYSTEM and SHOW.

Note: This reload function is not supported in queries with table references in the FROM clause.

Parent topic:System Functions