PostgreSQL 15 ← 14
SYSTEM VIEW · System view
pg_settings
The view pg_settings provides access to run-time parameters of the server. It is essentially an alternative interface to the SHOW and SET commands. It also provides access to some facts about each parameter that are not directly available from SHOW, such as minimum and maximum values.
Checked column by column against a PostgreSQL 18.6 instance · Raw measurement record ↗
Columns PostgreSQL 18
pg_settings| COLUMN | TYPE | DESCRIPTION |
|---|---|---|
name |
text |
Run-time configuration parameter name |
setting |
text |
Current value of the parameter |
unit |
text |
Implicit unit of the parameter |
category |
text |
Logical group of the parameter |
short_desc |
text |
A brief description of the parameter |
extra_desc |
text |
Additional, more detailed, description of the parameter |
context |
text |
Context required to set the parameter's value (see below) |
vartype |
text |
Parameter type (bool, enum, integer, real, or string) |
source |
text |
Source of the current parameter value |
min_val |
text |
Minimum allowed value of the parameter (null for non-numeric values) |
max_val |
text |
Maximum allowed value of the parameter (null for non-numeric values) |
enumvals |
text[] |
Allowed values of an enum parameter (null for non-enum values) |
boot_val |
text |
Parameter value assumed at server startup if the parameter is not otherwise set |
reset_val |
text |
Value that RESET would reset the parameter to in the current session |
sourcefile |
text |
Configuration file the current value was set in (null for values set from sources other than configuration files, or when examined by a user who neither is a superuser nor has privileges of pg_read_all_settings); helpful when using include directives in configuration files |
sourceline |
integerDocumented as:int4 |
Line number within the configuration file the current value was set at (null for values set from sources other than configuration files, or when examined by a user who neither is a superuser nor has privileges of pg_read_all_settings). |
pending_restart |
booleanDocumented as:bool |
true if the value has been changed in the configuration file but needs a restart; or false otherwise. |
Columns marked "implicit" are not included in SELECT *; some early statistics views are completed from same-version source, and the extra provenance is shown in the column description.
Common system columns 0
System attributes PostgreSQL provides, normally not expanded by SELECT *. Kept separately so they are not mixed in with ordinary columns.
| Columns | Type | attnum |
|---|
Column evolution matrix
Hover a cell for the column type9.0 is the coverage baseline; a column already present in the baseline is not marked as added. The matrix aligns columns by name, so a rename appears as the old column removed and a new column added.
Evolution timeline
Changes between adjacent majorsPostgreSQL 10 ← 9.6
PostgreSQL 9.5 ← 9.4
PostgreSQL 9.1 ← 9.0
Compare any two versions
Pick two versions to see added, removed, and retyped columns. The interactive comparison needs JavaScript; the evolution timeline reads fine without it.