Search Postgresql Archives

Re: Analytic Function Bug

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Here's the output of the script you requested.

On Thu, Aug 29, 2024 at 9:24 PM David Rowley <dgrowleyml@xxxxxxxxx> wrote:
On Fri, 30 Aug 2024 at 11:18, Rumpi Gravenstein <rgravens@xxxxxxxxx> wrote:

Which returns:
logical_partition_keyusage_texttxtrpo_txtindxmx_indxprvnxtnxt2prv2prv3
"TEST_DATA"
"F(T61)(EXPORT)" "F(T61)(EXPORT)" "F" "1" "7" "F" "(" "(" "[NULL]" "[NULL]"
"TEST_DATA"
"F(T61)(EXPORT)" "F(T61)(EXPORT)" "(" "2" "7" "F" "(" "T61" "F" "[NULL]"
"TEST_DATA"
"F(T61)(EXPORT)" "F(T61)(EXPORT)" "T61" "3" "7" "T61" ")" ")" "(" "("
"TEST_DATA"
"F(T61)(EXPORT)" "F(T61)(EXPORT)" ")" "4" "7" "T61" ")" "(" "T61" "("
"TEST_DATA"
"F(T61)(EXPORT)" "F(T61)(EXPORT)" "(" "5" "7" "(" "EXPORT" "EXPORT" ")" ")"
"TEST_DATA"
"F(T61)(EXPORT)" "F(T61)(EXPORT)" "EXPORT" "6" "7" "(" "EXPORT" ")" "(" ")"
"TEST_DATA"
"F(T61)(EXPORT)" "F(T61)(EXPORT)" ")" "7" "7" ")" "[NULL]" "[NULL]" "EXPORT" "EXPORT"

Notice that the prv column (lag - 1 ) is just wrong.  I've highlighted obvious bad values.  Other columns are wrong as well.

Is this a PostgreSQL bug?

FWIW, these aren't the results I see when executing your query on 14.13. I'm not sure what interface you're using to get those tables, but let's eliminate some buggy GUI and use psql instead.

I've attached a script, could you send us back the output of it with something like?: psql -f lag_query.sql > lagscript.txt

I've included a query to give us the EXPLAIN ANALYZE output too. The WHERE clause quals shouldn't get pushed down since the PARTITION BY clause does not contain all of those fields. 

David


--
Rumpi Gravenstein
Network Password: **************************************************Null display is "(null)".
 logical_partition_key |   usage_text   |      txt       | rpo_txt | indx | mx_indx |  prev  |  nxt   |  nxt2  |  prv2  |  prv3  
-----------------------+----------------+----------------+---------+------+---------+--------+--------+--------+--------+--------
 TEST_DATA             | F(T61)(EXPORT) | F(T61)(EXPORT) | F       |    1 |       7 | (null) | (      | T61    | (null) | (null)
 TEST_DATA             | F(T61)(EXPORT) | F(T61)(EXPORT) | (       |    2 |       7 | F      | T61    | )      | (null) | (null)
 TEST_DATA             | F(T61)(EXPORT) | F(T61)(EXPORT) | T61     |    3 |       7 | (      | )      | (      | F      | (null)
 TEST_DATA             | F(T61)(EXPORT) | F(T61)(EXPORT) | )       |    4 |       7 | T61    | (      | EXPORT | (      | F
 TEST_DATA             | F(T61)(EXPORT) | F(T61)(EXPORT) | (       |    5 |       7 | )      | EXPORT | )      | T61    | (
 TEST_DATA             | F(T61)(EXPORT) | F(T61)(EXPORT) | EXPORT  |    6 |       7 | (      | )      | (null) | )      | T61
 TEST_DATA             | F(T61)(EXPORT) | F(T61)(EXPORT) | )       |    7 |       7 | EXPORT | (null) | (null) | (      | )
(7 rows)

                                                                     QUERY PLAN                                                                      
-----------------------------------------------------------------------------------------------------------------------------------------------------
 Subquery Scan on prv_nxt_token  (cost=0.88..1.20 rows=1 width=304) (actual time=0.074..0.078 rows=7 loops=1)
   Filter: ((prv_nxt_token.logical_partition_key = 'TEST_DATA'::text) AND (prv_nxt_token.usage_text = 'F(T61)(EXPORT)'::text))
   ->  WindowAgg  (cost=0.88..1.05 rows=10 width=304) (actual time=0.074..0.077 rows=7 loops=1)
         ->  Sort  (cost=0.88..0.90 rows=10 width=296) (actual time=0.070..0.071 rows=7 loops=1)
               Sort Key: ('F(T61)(EXPORT)'::text)
               Sort Method: quicksort  Memory: 26kB
               ->  WindowAgg  (cost=0.39..0.71 rows=10 width=296) (actual time=0.052..0.062 rows=7 loops=1)
                     ->  Sort  (cost=0.39..0.41 rows=10 width=136) (actual time=0.045..0.046 rows=7 loops=1)
                           Sort Key: ('TEST_DATA'::text), ('F(T61)(EXPORT)'::text), a.pos
                           Sort Method: quicksort  Memory: 25kB
                           ->  Nested Loop Left Join  (cost=0.00..0.22 rows=10 width=136) (actual time=0.034..0.035 rows=7 loops=1)
                                 ->  Unique  (cost=0.00..0.01 rows=1 width=96) (actual time=0.001..0.001 rows=1 loops=1)
                                       ->  Result  (cost=0.00..0.01 rows=1 width=96) (actual time=0.001..0.001 rows=1 loops=1)
                                 ->  Function Scan on regexp_matches a  (cost=0.00..0.10 rows=10 width=40) (actual time=0.031..0.032 rows=7 loops=1)
 Planning Time: 0.156 ms
 Execution Time: 0.166 ms
(16 rows)

                                                 version                                                  
----------------------------------------------------------------------------------------------------------
 PostgreSQL 14.13 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-22), 64-bit
(1 row)

                  name                  |                                                                                                              setting                                                                                                               |  unit  |                             category                              |                                                                                                                                                                                                                           short_desc                                                                                                                                                                                                                           |                                                                                                                                                                                                                                 extra_desc                                                                                                                                                                                                                                  |      context      | vartype |        source        |   min_val   |   max_val    |                                    enumvals                                    |               boot_val                |                                                                                                             reset_val                                                                                                              |                         sourcefile                          | sourceline | pending_restart 
----------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------+-------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------+---------+----------------------+-------------+--------------+--------------------------------------------------------------------------------+---------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------+------------+-----------------
 allow_in_place_tablespaces             | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Allows tablespaces directly inside pg_tblspc, for testing.                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 allow_system_table_mods                | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Allows modifications of the structure of system tables.                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 application_name                       | psql                                                                                                                                                                                                                               | (null) | Reporting and Logging / What to Log                               | Sets the application name to be reported in statistics and logs.                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | client               | (null)      | (null)       | (null)                                                                         |                                       | psql                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 archive_cleanup_command                |                                                                                                                                                                                                                                    | (null) | Write-Ahead Log / Archive Recovery                                | Sets the shell command that will be executed at every restart point.                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 archive_command                        | pgbackrest --stanza=gmpubdev1 archive-push %p                                                                                                                                                                                      | (null) | Write-Ahead Log / Archiving                                       | Sets the shell command that will be called to archive a WAL file.                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | configuration file   | (null)      | (null)       | (null)                                                                         |                                       | pgbackrest --stanza=gmpubdev1 archive-push %p                                                                                                                                                                                      | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.backup.conf |          4 | f
 archive_mode                           | on                                                                                                                                                                                                                                 | (null) | Write-Ahead Log / Archiving                                       | Allows archiving of WAL files using archive_command.                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | enum    | configuration file   | (null)      | (null)       | {always,on,off}                                                                | off                                   | on                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.backup.conf |          3 | f
 archive_timeout                        | 0                                                                                                                                                                                                                                  | s      | Write-Ahead Log / Archiving                                       | Forces a switch to the next WAL file if a new file has not been started within N seconds.                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 1073741823   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 array_nulls                            | on                                                                                                                                                                                                                                 | (null) | Version and Platform Compatibility / Previous PostgreSQL Versions | Enable input of NULL elements in arrays.                                                                                                                                                                                                                                                                                                                                                                                                                       | When turned on, unquoted NULL in an array input value means a null value; otherwise it is taken literally.                                                                                                                                                                                                                                                                                                                                                                  | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 authentication_timeout                 | 60                                                                                                                                                                                                                                 | s      | Connections and Authentication / Authentication                   | Sets the maximum allowed time to complete client authentication.                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 1           | 600          | (null)                                                                         | 60                                    | 60                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 auto_explain.log_analyze               | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Use EXPLAIN ANALYZE for plan logging.                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 auto_explain.log_buffers               | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Log buffers usage.                                                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 auto_explain.log_format                | text                                                                                                                                                                                                                               | (null) | Customized Options                                                | EXPLAIN format to be used for plan logging.                                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | enum    | default              | (null)      | (null)       | {text,xml,json,yaml}                                                           | text                                  | text                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 auto_explain.log_level                 | log                                                                                                                                                                                                                                | (null) | Customized Options                                                | Log level for the plan.                                                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | enum    | default              | (null)      | (null)       | {debug5,debug4,debug3,debug2,debug1,info,notice,warning,log}                   | log                                   | log                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 auto_explain.log_min_duration          | 600000                                                                                                                                                                                                                             | ms     | Customized Options                                                | Sets the minimum execution time above which plans will be logged.                                                                                                                                                                                                                                                                                                                                                                                              | Zero prints all plans. -1 turns this feature off.                                                                                                                                                                                                                                                                                                                                                                                                                           | superuser         | integer | configuration file   | -1          | 2147483647   | (null)                                                                         | -1                                    | 600000                                                                                                                                                                                                                             | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.memory.conf |         13 | f
 auto_explain.log_nested_statements     | on                                                                                                                                                                                                                                 | (null) | Customized Options                                                | Log nested statements.                                                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | configuration file   | (null)      | (null)       | (null)                                                                         | off                                   | on                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |          3 | f
 auto_explain.log_settings              | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Log modified configuration parameters affecting query planning.                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 auto_explain.log_timing                | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Collect timing data, not just row counts.                                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | configuration file   | (null)      | (null)       | (null)                                                                         | on                                    | off                                                                                                                                                                                                                                | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |          2 | f
 auto_explain.log_triggers              | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Include trigger statistics in plans.                                                                                                                                                                                                                                                                                                                                                                                                                           | This has no effect unless log_analyze is also set.                                                                                                                                                                                                                                                                                                                                                                                                                          | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 auto_explain.log_verbose               | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Use EXPLAIN VERBOSE for plan logging.                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 auto_explain.log_wal                   | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Log WAL usage.                                                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 auto_explain.sample_rate               | 1                                                                                                                                                                                                                                  | (null) | Customized Options                                                | Fraction of queries to process.                                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | real    | default              | 0           | 1            | (null)                                                                         | 1                                     | 1                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 autovacuum                             | on                                                                                                                                                                                                                                 | (null) | Autovacuum                                                        | Starts the autovacuum subprocess.                                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 autovacuum_analyze_scale_factor        | 0.1                                                                                                                                                                                                                                | (null) | Autovacuum                                                        | Number of tuple inserts, updates, or deletes prior to analyze as a fraction of reltuples.                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | real    | default              | 0           | 100          | (null)                                                                         | 0.1                                   | 0.1                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 autovacuum_analyze_threshold           | 50                                                                                                                                                                                                                                 | (null) | Autovacuum                                                        | Minimum number of tuple inserts, updates, or deletes prior to analyze.                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 2147483647   | (null)                                                                         | 50                                    | 50                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 autovacuum_freeze_max_age              | 200000000                                                                                                                                                                                                                          | (null) | Autovacuum                                                        | Age at which to autovacuum a table to prevent transaction ID wraparound.                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 100000      | 2000000000   | (null)                                                                         | 200000000                             | 200000000                                                                                                                                                                                                                          | (null)                                                      |     (null) | f
 autovacuum_max_workers                 | 3                                                                                                                                                                                                                                  | (null) | Autovacuum                                                        | Sets the maximum number of simultaneously running autovacuum worker processes.                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 1           | 262143       | (null)                                                                         | 3                                     | 3                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 autovacuum_multixact_freeze_max_age    | 400000000                                                                                                                                                                                                                          | (null) | Autovacuum                                                        | Multixact age at which to autovacuum a table to prevent multixact wraparound.                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 10000       | 2000000000   | (null)                                                                         | 400000000                             | 400000000                                                                                                                                                                                                                          | (null)                                                      |     (null) | f
 autovacuum_naptime                     | 60                                                                                                                                                                                                                                 | s      | Autovacuum                                                        | Time to sleep between autovacuum runs.                                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 1           | 2147483      | (null)                                                                         | 60                                    | 60                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 autovacuum_vacuum_cost_delay           | 2                                                                                                                                                                                                                                  | ms     | Autovacuum                                                        | Vacuum cost delay in milliseconds, for autovacuum.                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | real    | default              | -1          | 100          | (null)                                                                         | 2                                     | 2                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 autovacuum_vacuum_cost_limit           | -1                                                                                                                                                                                                                                 | (null) | Autovacuum                                                        | Vacuum cost amount available before napping, for autovacuum.                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | -1          | 10000        | (null)                                                                         | -1                                    | -1                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 autovacuum_vacuum_insert_scale_factor  | 0.2                                                                                                                                                                                                                                | (null) | Autovacuum                                                        | Number of tuple inserts prior to vacuum as a fraction of reltuples.                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | real    | default              | 0           | 100          | (null)                                                                         | 0.2                                   | 0.2                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 autovacuum_vacuum_insert_threshold     | 1000                                                                                                                                                                                                                               | (null) | Autovacuum                                                        | Minimum number of tuple inserts prior to vacuum, or -1 to disable insert vacuums.                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | -1          | 2147483647   | (null)                                                                         | 1000                                  | 1000                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 autovacuum_vacuum_scale_factor         | 0.2                                                                                                                                                                                                                                | (null) | Autovacuum                                                        | Number of tuple updates or deletes prior to vacuum as a fraction of reltuples.                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | real    | default              | 0           | 100          | (null)                                                                         | 0.2                                   | 0.2                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 autovacuum_vacuum_threshold            | 50                                                                                                                                                                                                                                 | (null) | Autovacuum                                                        | Minimum number of tuple updates or deletes prior to vacuum.                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 2147483647   | (null)                                                                         | 50                                    | 50                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 autovacuum_work_mem                    | -1                                                                                                                                                                                                                                 | kB     | Resource Usage / Memory                                           | Sets the maximum memory to be used by each autovacuum worker process.                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | -1          | 2147483647   | (null)                                                                         | -1                                    | -1                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 backend_flush_after                    | 0                                                                                                                                                                                                                                  | 8kB    | Resource Usage / Asynchronous Behavior                            | Number of pages after which previously performed writes are flushed to disk.                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 256          | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 backslash_quote                        | safe_encoding                                                                                                                                                                                                                      | (null) | Version and Platform Compatibility / Previous PostgreSQL Versions | Sets whether "\'" is allowed in string literals.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {safe_encoding,on,off}                                                         | safe_encoding                         | safe_encoding                                                                                                                                                                                                                      | (null)                                                      |     (null) | f
 backtrace_functions                    |                                                                                                                                                                                                                                    | (null) | Developer Options                                                 | Log backtrace for errors in these functions.                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 bgwriter_delay                         | 200                                                                                                                                                                                                                                | ms     | Resource Usage / Background Writer                                | Background writer sleep time between rounds.                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 10          | 10000        | (null)                                                                         | 200                                   | 200                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 bgwriter_flush_after                   | 64                                                                                                                                                                                                                                 | 8kB    | Resource Usage / Background Writer                                | Number of pages after which previously performed writes are flushed to disk.                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 256          | (null)                                                                         | 64                                    | 64                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 bgwriter_lru_maxpages                  | 100                                                                                                                                                                                                                                | (null) | Resource Usage / Background Writer                                | Background writer maximum number of LRU pages to flush per round.                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 1073741823   | (null)                                                                         | 100                                   | 100                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 bgwriter_lru_multiplier                | 2                                                                                                                                                                                                                                  | (null) | Resource Usage / Background Writer                                | Multiple of the average buffer usage to free per round.                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | real    | default              | 0           | 10           | (null)                                                                         | 2                                     | 2                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 block_size                             | 8192                                                                                                                                                                                                                               | (null) | Preset Options                                                    | Shows the size of a disk block.                                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | integer | default              | 8192        | 8192         | (null)                                                                         | 8192                                  | 8192                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 bonjour                                | off                                                                                                                                                                                                                                | (null) | Connections and Authentication / Connection Settings              | Enables advertising the server via Bonjour.                                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 bonjour_name                           |                                                                                                                                                                                                                                    | (null) | Connections and Authentication / Connection Settings              | Sets the Bonjour service name.                                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 bytea_output                           | hex                                                                                                                                                                                                                                | (null) | Client Connection Defaults / Statement Behavior                   | Sets the output format for bytea.                                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {escape,hex}                                                                   | hex                                   | hex                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 check_function_bodies                  | on                                                                                                                                                                                                                                 | (null) | Client Connection Defaults / Statement Behavior                   | Check routine bodies during CREATE FUNCTION and CREATE PROCEDURE.                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 checkpoint_completion_target           | 0.9                                                                                                                                                                                                                                | (null) | Write-Ahead Log / Checkpoints                                     | Time spent flushing dirty buffers during checkpoint, as fraction of checkpoint interval.                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | real    | default              | 0           | 1            | (null)                                                                         | 0.9                                   | 0.9                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 checkpoint_flush_after                 | 32                                                                                                                                                                                                                                 | 8kB    | Write-Ahead Log / Checkpoints                                     | Number of pages after which previously performed writes are flushed to disk.                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 256          | (null)                                                                         | 32                                    | 32                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 checkpoint_timeout                     | 300                                                                                                                                                                                                                                | s      | Write-Ahead Log / Checkpoints                                     | Sets the maximum time between automatic WAL checkpoints.                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 30          | 86400        | (null)                                                                         | 300                                   | 300                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 checkpoint_warning                     | 30                                                                                                                                                                                                                                 | s      | Write-Ahead Log / Checkpoints                                     | Enables warnings if checkpoint segments are filled more frequently than this.                                                                                                                                                                                                                                                                                                                                                                                  | Write a message to the server log if checkpoints caused by the filling of checkpoint segment files happens more frequently than this number of seconds. Zero turns off the warning.                                                                                                                                                                                                                                                                                         | sighup            | integer | default              | 0           | 2147483647   | (null)                                                                         | 30                                    | 30                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 client_connection_check_interval       | 0                                                                                                                                                                                                                                  | ms     | Connections and Authentication / Connection Settings              | Sets the time interval between checks for disconnection while running queries.                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 client_encoding                        | UTF8                                                                                                                                                                                                                               | (null) | Client Connection Defaults / Locale and Formatting                | Sets the client's character set encoding.                                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | default              | (null)      | (null)       | (null)                                                                         | SQL_ASCII                             | UTF8                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 client_min_messages                    | notice                                                                                                                                                                                                                             | (null) | Client Connection Defaults / Statement Behavior                   | Sets the message levels that are sent to the client.                                                                                                                                                                                                                                                                                                                                                                                                           | Each level includes all the levels that follow it. The later the level, the fewer messages are sent.                                                                                                                                                                                                                                                                                                                                                                        | user              | enum    | default              | (null)      | (null)       | {debug5,debug4,debug3,debug2,debug1,log,notice,warning,error}                  | notice                                | notice                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 cluster_name                           | gmpubdev1                                                                                                                                                                                                                          | (null) | Reporting and Logging / Process Title                             | Sets the name of the cluster, which is included in the process title.                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | configuration file   | (null)      | (null)       | (null)                                                                         |                                       | gmpubdev1                                                                                                                                                                                                                          | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |          4 | f
 commit_delay                           | 0                                                                                                                                                                                                                                  | (null) | Write-Ahead Log / Settings                                        | Sets the delay in microseconds between transaction commit and flushing WAL to disk.                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | integer | default              | 0           | 100000       | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 commit_siblings                        | 5                                                                                                                                                                                                                                  | (null) | Write-Ahead Log / Settings                                        | Sets the minimum concurrent open transactions before performing commit_delay.                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 1000         | (null)                                                                         | 5                                     | 5                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 compute_query_id                       | auto                                                                                                                                                                                                                               | (null) | Statistics / Monitoring                                           | Compute query identifiers.                                                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | enum    | default              | (null)      | (null)       | {auto,regress,on,off}                                                          | auto                                  | auto                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 config_file                            | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf                                                                                                                                                                                   | (null) | File Locations                                                    | Sets the server's main configuration file.                                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | override             | (null)      | (null)       | (null)                                                                         | (null)                                | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf                                                                                                                                                                                   | (null)                                                      |     (null) | f
 constraint_exclusion                   | partition                                                                                                                                                                                                                          | (null) | Query Tuning / Other Planner Options                              | Enables the planner to use constraints to optimize queries.                                                                                                                                                                                                                                                                                                                                                                                                    | Table scans will be skipped if their constraints guarantee that no rows match the query.                                                                                                                                                                                                                                                                                                                                                                                    | user              | enum    | default              | (null)      | (null)       | {partition,on,off}                                                             | partition                             | partition                                                                                                                                                                                                                          | (null)                                                      |     (null) | f
 cpu_index_tuple_cost                   | 0.005                                                                                                                                                                                                                              | (null) | Query Tuning / Planner Cost Constants                             | Sets the planner's estimate of the cost of processing each index entry during an index scan.                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 1.79769e+308 | (null)                                                                         | 0.005                                 | 0.005                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 cpu_operator_cost                      | 0.0025                                                                                                                                                                                                                             | (null) | Query Tuning / Planner Cost Constants                             | Sets the planner's estimate of the cost of processing each operator or function call.                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 1.79769e+308 | (null)                                                                         | 0.0025                                | 0.0025                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 cpu_tuple_cost                         | 0.01                                                                                                                                                                                                                               | (null) | Query Tuning / Planner Cost Constants                             | Sets the planner's estimate of the cost of processing each tuple (row).                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 1.79769e+308 | (null)                                                                         | 0.01                                  | 0.01                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 cursor_tuple_fraction                  | 0.1                                                                                                                                                                                                                                | (null) | Query Tuning / Other Planner Options                              | Sets the planner's estimate of the fraction of a cursor's rows that will be retrieved.                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 1            | (null)                                                                         | 0.1                                   | 0.1                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 data_checksums                         | off                                                                                                                                                                                                                                | (null) | Preset Options                                                    | Shows whether data checksums are turned on for this cluster.                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | bool    | override             | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 data_directory                         | /var/lib/pgsql/14/data/gmpubdev1                                                                                                                                                                                                   | (null) | File Locations                                                    | Sets the server's data directory.                                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | override             | (null)      | (null)       | (null)                                                                         | (null)                                | /var/lib/pgsql/14/data/gmpubdev1                                                                                                                                                                                                   | (null)                                                      |     (null) | f
 data_directory_mode                    | 0700                                                                                                                                                                                                                               | (null) | Preset Options                                                    | Shows the mode of the data directory.                                                                                                                                                                                                                                                                                                                                                                                                                          | The parameter value is a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)                                                                                                                                                                                                                                                                                    | internal          | integer | default              | 0           | 511          | (null)                                                                         | 448                                   | 448                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 data_sync_retry                        | off                                                                                                                                                                                                                                | (null) | Error Handling                                                    | Whether to continue running after a failure to sync data files.                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 DateStyle                              | ISO, MDY                                                                                                                                                                                                                           | (null) | Client Connection Defaults / Locale and Formatting                | Sets the display format for date and time values.                                                                                                                                                                                                                                                                                                                                                                                                              | Also controls interpretation of ambiguous date inputs.                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | configuration file   | (null)      | (null)       | (null)                                                                         | ISO, MDY                              | ISO, MDY                                                                                                                                                                                                                           | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        694 | f
 db_user_namespace                      | off                                                                                                                                                                                                                                | (null) | Connections and Authentication / Authentication                   | Enables per-database user names.                                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 deadlock_timeout                       | 1000                                                                                                                                                                                                                               | ms     | Lock Management                                                   | Sets the time to wait on a lock before checking for deadlock.                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | integer | default              | 1           | 2147483647   | (null)                                                                         | 1000                                  | 1000                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 debug_assertions                       | off                                                                                                                                                                                                                                | (null) | Preset Options                                                    | Shows whether the running server has assertion checks enabled.                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 debug_discard_caches                   | 0                                                                                                                                                                                                                                  | (null) | Developer Options                                                 | Aggressively flush system caches for debugging purposes.                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | integer | default              | 0           | 0            | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 debug_pretty_print                     | on                                                                                                                                                                                                                                 | (null) | Reporting and Logging / What to Log                               | Indents parse and plan tree displays.                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 debug_print_parse                      | off                                                                                                                                                                                                                                | (null) | Reporting and Logging / What to Log                               | Logs each query's parse tree.                                                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 debug_print_plan                       | off                                                                                                                                                                                                                                | (null) | Reporting and Logging / What to Log                               | Logs each query's execution plan.                                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 debug_print_rewritten                  | off                                                                                                                                                                                                                                | (null) | Reporting and Logging / What to Log                               | Logs each query's rewritten parse tree.                                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 default_statistics_target              | 100                                                                                                                                                                                                                                | (null) | Query Tuning / Other Planner Options                              | Sets the default statistics target.                                                                                                                                                                                                                                                                                                                                                                                                                            | This applies to table columns that have not had a column-specific target set via ALTER TABLE SET STATISTICS.                                                                                                                                                                                                                                                                                                                                                                | user              | integer | default              | 1           | 10000        | (null)                                                                         | 100                                   | 100                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 default_table_access_method            | heap                                                                                                                                                                                                                               | (null) | Client Connection Defaults / Statement Behavior                   | Sets the default table access method for new tables.                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | default              | (null)      | (null)       | (null)                                                                         | heap                                  | heap                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 default_tablespace                     |                                                                                                                                                                                                                                    | (null) | Client Connection Defaults / Statement Behavior                   | Sets the default tablespace to create tables and indexes in.                                                                                                                                                                                                                                                                                                                                                                                                   | An empty string selects the database's default tablespace.                                                                                                                                                                                                                                                                                                                                                                                                                  | user              | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 default_text_search_config             | pg_catalog.english                                                                                                                                                                                                                 | (null) | Client Connection Defaults / Locale and Formatting                | Sets default text search configuration.                                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | configuration file   | (null)      | (null)       | (null)                                                                         | pg_catalog.simple                     | pg_catalog.english                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        717 | f
 default_toast_compression              | pglz                                                                                                                                                                                                                               | (null) | Client Connection Defaults / Statement Behavior                   | Sets the default compression method for compressible values.                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {pglz,lz4}                                                                     | pglz                                  | pglz                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 default_transaction_deferrable         | off                                                                                                                                                                                                                                | (null) | Client Connection Defaults / Statement Behavior                   | Sets the default deferrable status of new transactions.                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 default_transaction_isolation          | read committed                                                                                                                                                                                                                     | (null) | Client Connection Defaults / Statement Behavior                   | Sets the transaction isolation level of each new transaction.                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {serializable,"repeatable read","read committed","read uncommitted"}           | read committed                        | read committed                                                                                                                                                                                                                     | (null)                                                      |     (null) | f
 default_transaction_read_only          | off                                                                                                                                                                                                                                | (null) | Client Connection Defaults / Statement Behavior                   | Sets the default read-only status of new transactions.                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 dynamic_library_path                   | $libdir                                                                                                                                                                                                                            | (null) | Client Connection Defaults / Other Defaults                       | Sets the path for dynamically loadable modules.                                                                                                                                                                                                                                                                                                                                                                                                                | If a dynamically loadable module needs to be opened and the specified name does not have a directory component (i.e., the name does not contain a slash), the system will search this path for the specified file.                                                                                                                                                                                                                                                          | superuser         | string  | default              | (null)      | (null)       | (null)                                                                         | $libdir                               | $libdir                                                                                                                                                                                                                            | (null)                                                      |     (null) | f
 dynamic_shared_memory_type             | posix                                                                                                                                                                                                                              | (null) | Resource Usage / Memory                                           | Selects the dynamic shared memory implementation used.                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | enum    | configuration file   | (null)      | (null)       | {posix,sysv,mmap}                                                              | posix                                 | posix                                                                                                                                                                                                                              | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        150 | f
 effective_cache_size                   | 134217728                                                                                                                                                                                                                          | 8kB    | Query Tuning / Planner Cost Constants                             | Sets the planner's assumption about the total size of the data caches.                                                                                                                                                                                                                                                                                                                                                                                         | That is, the total size of the caches (kernel cache and shared buffers) used for PostgreSQL data files. This is measured in disk pages, which are normally 8 kB each.                                                                                                                                                                                                                                                                                                       | user              | integer | configuration file   | 1           | 2147483647   | (null)                                                                         | 524288                                | 134217728                                                                                                                                                                                                                          | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.memory.conf |          1 | f
 effective_io_concurrency               | 1                                                                                                                                                                                                                                  | (null) | Resource Usage / Asynchronous Behavior                            | Number of simultaneous requests that can be handled efficiently by the disk subsystem.                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 1000         | (null)                                                                         | 1                                     | 1                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 enable_async_append                    | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of async append plans.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_bitmapscan                      | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of bitmap-scan plans.                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_gathermerge                     | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of gather merge plans.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_hashagg                         | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of hashed aggregation plans.                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_hashjoin                        | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of hash join plans.                                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_incremental_sort                | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of incremental sort steps.                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_indexonlyscan                   | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of index-only-scan plans.                                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_indexscan                       | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of index-scan plans.                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_material                        | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of materialization.                                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_memoize                         | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of memoization.                                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_mergejoin                       | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of merge join plans.                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_nestloop                        | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of nested-loop join plans.                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_parallel_append                 | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of parallel append plans.                                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_parallel_hash                   | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of parallel hash plans.                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_partition_pruning               | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables plan-time and execution-time partition pruning.                                                                                                                                                                                                                                                                                                                                                                                                        | Allows the query planner and executor to compare partition bounds to conditions in the query to determine which partitions must be scanned.                                                                                                                                                                                                                                                                                                                                 | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_partitionwise_aggregate         | off                                                                                                                                                                                                                                | (null) | Query Tuning / Planner Method Configuration                       | Enables partitionwise aggregation and grouping.                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 enable_partitionwise_join              | off                                                                                                                                                                                                                                | (null) | Query Tuning / Planner Method Configuration                       | Enables partitionwise join.                                                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 enable_seqscan                         | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of sequential-scan plans.                                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_sort                            | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of explicit sort steps.                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 enable_tidscan                         | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Planner Method Configuration                       | Enables the planner's use of TID scan plans.                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 escape_string_warning                  | on                                                                                                                                                                                                                                 | (null) | Version and Platform Compatibility / Previous PostgreSQL Versions | Warn about backslash escapes in ordinary string literals.                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 event_source                           | PostgreSQL                                                                                                                                                                                                                         | (null) | Reporting and Logging / Where to Log                              | Sets the application name used to identify PostgreSQL messages in the event log.                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         | PostgreSQL                            | PostgreSQL                                                                                                                                                                                                                         | (null)                                                      |     (null) | f
 exit_on_error                          | off                                                                                                                                                                                                                                | (null) | Error Handling                                                    | Terminate session on any error.                                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 external_pid_file                      |                                                                                                                                                                                                                                    | (null) | File Locations                                                    | Writes the postmaster PID to the specified file.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         | (null)                                | (null)                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 extra_float_digits                     | 1                                                                                                                                                                                                                                  | (null) | Client Connection Defaults / Locale and Formatting                | Sets the number of digits displayed for floating-point values.                                                                                                                                                                                                                                                                                                                                                                                                 | This affects real, double precision, and geometric data types. A zero or negative parameter value is added to the standard number of digits (FLT_DIG or DBL_DIG as appropriate). Any value greater than zero selects precise output mode.                                                                                                                                                                                                                                   | user              | integer | default              | -15         | 3            | (null)                                                                         | 1                                     | 1                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 force_parallel_mode                    | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Forces use of parallel query facilities.                                                                                                                                                                                                                                                                                                                                                                                                                       | If possible, run query using a parallel worker and with parallel restrictions.                                                                                                                                                                                                                                                                                                                                                                                              | user              | enum    | default              | (null)      | (null)       | {off,on,regress}                                                               | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 from_collapse_limit                    | 8                                                                                                                                                                                                                                  | (null) | Query Tuning / Other Planner Options                              | Sets the FROM-list size beyond which subqueries are not collapsed.                                                                                                                                                                                                                                                                                                                                                                                             | The planner will merge subqueries into upper queries if the resulting FROM list would have no more than this many items.                                                                                                                                                                                                                                                                                                                                                    | user              | integer | default              | 1           | 2147483647   | (null)                                                                         | 8                                     | 8                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 fsync                                  | on                                                                                                                                                                                                                                 | (null) | Write-Ahead Log / Settings                                        | Forces synchronization of updates to disk.                                                                                                                                                                                                                                                                                                                                                                                                                     | The server will use the fsync() system call in several places to make sure that updates are physically written to disk. This ensures that a database cluster will recover to a consistent state after an operating system or hardware crash.                                                                                                                                                                                                                                | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 full_page_writes                       | on                                                                                                                                                                                                                                 | (null) | Write-Ahead Log / Settings                                        | Writes full pages to WAL when first modified after a checkpoint.                                                                                                                                                                                                                                                                                                                                                                                               | A page write in process during an operating system crash might be only partially written to disk.  During recovery, the row changes stored in WAL are not enough to recover.  This option writes pages when first modified after a checkpoint to WAL so full recovery is possible.                                                                                                                                                                                          | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 geqo                                   | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Genetic Query Optimizer                            | Enables genetic query optimization.                                                                                                                                                                                                                                                                                                                                                                                                                            | This algorithm attempts to do planning without exhaustive searching.                                                                                                                                                                                                                                                                                                                                                                                                        | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 geqo_effort                            | 5                                                                                                                                                                                                                                  | (null) | Query Tuning / Genetic Query Optimizer                            | GEQO: effort is used to set the default for other GEQO parameters.                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 1           | 10           | (null)                                                                         | 5                                     | 5                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 geqo_generations                       | 0                                                                                                                                                                                                                                  | (null) | Query Tuning / Genetic Query Optimizer                            | GEQO: number of iterations of the algorithm.                                                                                                                                                                                                                                                                                                                                                                                                                   | Zero selects a suitable default value.                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 geqo_pool_size                         | 0                                                                                                                                                                                                                                  | (null) | Query Tuning / Genetic Query Optimizer                            | GEQO: number of individuals in the population.                                                                                                                                                                                                                                                                                                                                                                                                                 | Zero selects a suitable default value.                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 geqo_seed                              | 0                                                                                                                                                                                                                                  | (null) | Query Tuning / Genetic Query Optimizer                            | GEQO: seed for random path selection.                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 1            | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 geqo_selection_bias                    | 2                                                                                                                                                                                                                                  | (null) | Query Tuning / Genetic Query Optimizer                            | GEQO: selective pressure within the population.                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 1.5         | 2            | (null)                                                                         | 2                                     | 2                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 geqo_threshold                         | 12                                                                                                                                                                                                                                 | (null) | Query Tuning / Genetic Query Optimizer                            | Sets the threshold of FROM items beyond which GEQO is used.                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 2           | 2147483647   | (null)                                                                         | 12                                    | 12                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 gin_fuzzy_search_limit                 | 0                                                                                                                                                                                                                                  | (null) | Client Connection Defaults / Other Defaults                       | Sets the maximum allowed result for exact search by GIN.                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 gin_pending_list_limit                 | 4096                                                                                                                                                                                                                               | kB     | Client Connection Defaults / Statement Behavior                   | Sets the maximum size of the pending list for GIN index.                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 64          | 2147483647   | (null)                                                                         | 4096                                  | 4096                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 hash_mem_multiplier                    | 1                                                                                                                                                                                                                                  | (null) | Resource Usage / Memory                                           | Multiple of work_mem to use for hash tables.                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 1           | 1000         | (null)                                                                         | 1                                     | 1                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 hba_file                               | /var/lib/pgsql/14/data/gmpubdev1/pg_hba.conf                                                                                                                                                                                       | (null) | File Locations                                                    | Sets the server's "hba" configuration file.                                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | override             | (null)      | (null)       | (null)                                                                         | (null)                                | /var/lib/pgsql/14/data/gmpubdev1/pg_hba.conf                                                                                                                                                                                       | (null)                                                      |     (null) | f
 hot_standby                            | on                                                                                                                                                                                                                                 | (null) | Replication / Standby Servers                                     | Allows connections and queries during recovery.                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 hot_standby_feedback                   | off                                                                                                                                                                                                                                | (null) | Replication / Standby Servers                                     | Allows feedback from a hot standby to the primary that will avoid query conflicts.                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 huge_page_size                         | 0                                                                                                                                                                                                                                  | kB     | Resource Usage / Memory                                           | The size of huge page that should be requested.                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 huge_pages                             | on                                                                                                                                                                                                                                 | (null) | Resource Usage / Memory                                           | Use of huge pages on Linux or Windows.                                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | enum    | configuration file   | (null)      | (null)       | {off,on,try}                                                                   | try                                   | on                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.memory.conf |          7 | f
 ident_file                             | /var/lib/pgsql/14/data/gmpubdev1/pg_ident.conf                                                                                                                                                                                     | (null) | File Locations                                                    | Sets the server's "ident" configuration file.                                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | override             | (null)      | (null)       | (null)                                                                         | (null)                                | /var/lib/pgsql/14/data/gmpubdev1/pg_ident.conf                                                                                                                                                                                     | (null)                                                      |     (null) | f
 idle_in_transaction_session_timeout    | 0                                                                                                                                                                                                                                  | ms     | Client Connection Defaults / Statement Behavior                   | Sets the maximum allowed idle time between queries, when in a transaction.                                                                                                                                                                                                                                                                                                                                                                                     | A value of 0 turns off the timeout.                                                                                                                                                                                                                                                                                                                                                                                                                                         | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 idle_session_timeout                   | 0                                                                                                                                                                                                                                  | ms     | Client Connection Defaults / Statement Behavior                   | Sets the maximum allowed idle time between queries, when not in a transaction.                                                                                                                                                                                                                                                                                                                                                                                 | A value of 0 turns off the timeout.                                                                                                                                                                                                                                                                                                                                                                                                                                         | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 ignore_checksum_failure                | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Continues processing after a checksum failure.                                                                                                                                                                                                                                                                                                                                                                                                                 | Detection of a checksum failure normally causes PostgreSQL to report an error, aborting the current transaction. Setting ignore_checksum_failure to true causes the system to ignore the failure (but still report a warning), and continue processing. This behavior could cause crashes or other serious problems. Only has an effect if checksums are enabled.                                                                                                           | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 ignore_invalid_pages                   | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Continues recovery after an invalid pages failure.                                                                                                                                                                                                                                                                                                                                                                                                             | Detection of WAL records having references to invalid pages during recovery causes PostgreSQL to raise a PANIC-level error, aborting the recovery. Setting ignore_invalid_pages to true causes the system to ignore invalid page references in WAL records (but still report a warning), and continue recovery. This behavior may cause crashes, data loss, propagate or hide corruption, or other serious problems. Only has an effect during recovery or in standby mode. | postmaster        | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 ignore_system_indexes                  | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Disables reading from system indexes.                                                                                                                                                                                                                                                                                                                                                                                                                          | It does not prevent updating the indexes, so it is safe to use.  The worst consequence is slowness.                                                                                                                                                                                                                                                                                                                                                                         | backend           | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 in_hot_standby                         | off                                                                                                                                                                                                                                | (null) | Preset Options                                                    | Shows whether hot standby is currently active.                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 integer_datetimes                      | on                                                                                                                                                                                                                                 | (null) | Preset Options                                                    | Shows whether datetimes are integer based.                                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 IntervalStyle                          | postgres                                                                                                                                                                                                                           | (null) | Client Connection Defaults / Locale and Formatting                | Sets the display format for interval values.                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {postgres,postgres_verbose,sql_standard,iso_8601}                              | postgres                              | postgres                                                                                                                                                                                                                           | (null)                                                      |     (null) | f
 jit                                    | on                                                                                                                                                                                                                                 | (null) | Query Tuning / Other Planner Options                              | Allow JIT compilation.                                                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 jit_above_cost                         | 100000                                                                                                                                                                                                                             | (null) | Query Tuning / Planner Cost Constants                             | Perform JIT compilation if query is more expensive.                                                                                                                                                                                                                                                                                                                                                                                                            | -1 disables JIT compilation.                                                                                                                                                                                                                                                                                                                                                                                                                                                | user              | real    | default              | -1          | 1.79769e+308 | (null)                                                                         | 100000                                | 100000                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 jit_debugging_support                  | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Register JIT-compiled functions with debugger.                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser-backend | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 jit_dump_bitcode                       | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Write out LLVM bitcode to facilitate JIT debugging.                                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 jit_expressions                        | on                                                                                                                                                                                                                                 | (null) | Developer Options                                                 | Allow JIT compilation of expressions.                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 jit_inline_above_cost                  | 500000                                                                                                                                                                                                                             | (null) | Query Tuning / Planner Cost Constants                             | Perform JIT inlining if query is more expensive.                                                                                                                                                                                                                                                                                                                                                                                                               | -1 disables inlining.                                                                                                                                                                                                                                                                                                                                                                                                                                                       | user              | real    | default              | -1          | 1.79769e+308 | (null)                                                                         | 500000                                | 500000                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 jit_optimize_above_cost                | 500000                                                                                                                                                                                                                             | (null) | Query Tuning / Planner Cost Constants                             | Optimize JIT-compiled functions if query is more expensive.                                                                                                                                                                                                                                                                                                                                                                                                    | -1 disables optimization.                                                                                                                                                                                                                                                                                                                                                                                                                                                   | user              | real    | default              | -1          | 1.79769e+308 | (null)                                                                         | 500000                                | 500000                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 jit_profiling_support                  | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Register JIT-compiled functions with perf profiler.                                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser-backend | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 jit_provider                           | llvmjit                                                                                                                                                                                                                            | (null) | Client Connection Defaults / Shared Library Preloading            | JIT provider to use.                                                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         | llvmjit                               | llvmjit                                                                                                                                                                                                                            | (null)                                                      |     (null) | f
 jit_tuple_deforming                    | on                                                                                                                                                                                                                                 | (null) | Developer Options                                                 | Allow JIT compilation of tuple deforming.                                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 join_collapse_limit                    | 8                                                                                                                                                                                                                                  | (null) | Query Tuning / Other Planner Options                              | Sets the FROM-list size beyond which JOIN constructs are not flattened.                                                                                                                                                                                                                                                                                                                                                                                        | The planner will flatten explicit JOIN constructs into lists of FROM items whenever a list of no more than this many items would result.                                                                                                                                                                                                                                                                                                                                    | user              | integer | default              | 1           | 2147483647   | (null)                                                                         | 8                                     | 8                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 krb_caseins_users                      | off                                                                                                                                                                                                                                | (null) | Connections and Authentication / Authentication                   | Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive.                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 krb_server_keyfile                     | FILE:/etc/sysconfig/pgsql/krb5.keytab                                                                                                                                                                                              | (null) | Connections and Authentication / Authentication                   | Sets the location of the Kerberos server key file.                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         | FILE:/etc/sysconfig/pgsql/krb5.keytab | FILE:/etc/sysconfig/pgsql/krb5.keytab                                                                                                                                                                                              | (null)                                                      |     (null) | f
 lc_collate                             | C                                                                                                                                                                                                                                  | (null) | Preset Options                                                    | Shows the collation order locale.                                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | string  | override             | (null)      | (null)       | (null)                                                                         | C                                     | C                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 lc_ctype                               | en_US.UTF-8                                                                                                                                                                                                                        | (null) | Preset Options                                                    | Shows the character classification and case conversion locale.                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | string  | override             | (null)      | (null)       | (null)                                                                         | C                                     | en_US.UTF-8                                                                                                                                                                                                                        | (null)                                                      |     (null) | f
 lc_messages                            | en_US.UTF-8                                                                                                                                                                                                                        | (null) | Client Connection Defaults / Locale and Formatting                | Sets the language in which messages are displayed.                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | string  | configuration file   | (null)      | (null)       | (null)                                                                         |                                       | en_US.UTF-8                                                                                                                                                                                                                        | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        710 | f
 lc_monetary                            | en_US.UTF-8                                                                                                                                                                                                                        | (null) | Client Connection Defaults / Locale and Formatting                | Sets the locale for formatting monetary amounts.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | configuration file   | (null)      | (null)       | (null)                                                                         | C                                     | en_US.UTF-8                                                                                                                                                                                                                        | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        712 | f
 lc_numeric                             | en_US.UTF-8                                                                                                                                                                                                                        | (null) | Client Connection Defaults / Locale and Formatting                | Sets the locale for formatting numbers.                                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | configuration file   | (null)      | (null)       | (null)                                                                         | C                                     | en_US.UTF-8                                                                                                                                                                                                                        | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        713 | f
 lc_time                                | en_US.UTF-8                                                                                                                                                                                                                        | (null) | Client Connection Defaults / Locale and Formatting                | Sets the locale for formatting date and time values.                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | configuration file   | (null)      | (null)       | (null)                                                                         | C                                     | en_US.UTF-8                                                                                                                                                                                                                        | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        714 | f
 listen_addresses                       | *                                                                                                                                                                                                                                  | (null) | Connections and Authentication / Connection Settings              | Sets the host name or IP address(es) to listen to.                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | configuration file   | (null)      | (null)       | (null)                                                                         | localhost                             | *                                                                                                                                                                                                                                  | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |          5 | f
 lo_compat_privileges                   | off                                                                                                                                                                                                                                | (null) | Version and Platform Compatibility / Previous PostgreSQL Versions | Enables backward compatibility mode for privilege checks on large objects.                                                                                                                                                                                                                                                                                                                                                                                     | Skips privilege checks when reading or modifying large objects, for compatibility with PostgreSQL releases prior to 9.0.                                                                                                                                                                                                                                                                                                                                                    | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 local_preload_libraries                |                                                                                                                                                                                                                                    | (null) | Client Connection Defaults / Shared Library Preloading            | Lists unprivileged shared libraries to preload into each backend.                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 lock_timeout                           | 0                                                                                                                                                                                                                                  | ms     | Client Connection Defaults / Statement Behavior                   | Sets the maximum allowed duration of any wait for a lock.                                                                                                                                                                                                                                                                                                                                                                                                      | A value of 0 turns off the timeout.                                                                                                                                                                                                                                                                                                                                                                                                                                         | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 log_autovacuum_min_duration            | 5000                                                                                                                                                                                                                               | ms     | Reporting and Logging / What to Log                               | Sets the minimum execution time above which autovacuum actions will be logged.                                                                                                                                                                                                                                                                                                                                                                                 | Zero prints all actions. -1 turns autovacuum logging off.                                                                                                                                                                                                                                                                                                                                                                                                                   | sighup            | integer | configuration file   | -1          | 2147483647   | (null)                                                                         | -1                                    | 5000                                                                                                                                                                                                                               | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |          6 | f
 log_checkpoints                        | off                                                                                                                                                                                                                                | (null) | Reporting and Logging / What to Log                               | Logs each checkpoint.                                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_connections                        | on                                                                                                                                                                                                                                 | (null) | Reporting and Logging / What to Log                               | Logs each successful connection.                                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser-backend | bool    | configuration file   | (null)      | (null)       | (null)                                                                         | off                                   | on                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |          7 | f
 log_destination                        | csvlog                                                                                                                                                                                                                             | (null) | Reporting and Logging / Where to Log                              | Sets the destination for server log output.                                                                                                                                                                                                                                                                                                                                                                                                                    | Valid values are combinations of "stderr", "syslog", "csvlog", and "eventlog", depending on the platform.                                                                                                                                                                                                                                                                                                                                                                   | sighup            | string  | configuration file   | (null)      | (null)       | (null)                                                                         | stderr                                | csvlog                                                                                                                                                                                                                             | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |          8 | f
 log_directory                          | log                                                                                                                                                                                                                                | (null) | Reporting and Logging / Where to Log                              | Sets the destination directory for log files.                                                                                                                                                                                                                                                                                                                                                                                                                  | Can be specified as relative to the data directory or as absolute path.                                                                                                                                                                                                                                                                                                                                                                                                     | sighup            | string  | configuration file   | (null)      | (null)       | (null)                                                                         | log                                   | log                                                                                                                                                                                                                                | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        445 | f
 log_disconnections                     | off                                                                                                                                                                                                                                | (null) | Reporting and Logging / What to Log                               | Logs end of a session, including duration.                                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser-backend | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_duration                           | off                                                                                                                                                                                                                                | (null) | Reporting and Logging / What to Log                               | Logs the duration of each completed SQL statement.                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_error_verbosity                    | default                                                                                                                                                                                                                            | (null) | Reporting and Logging / What to Log                               | Sets the verbosity of logged messages.                                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | enum    | default              | (null)      | (null)       | {terse,default,verbose}                                                        | default                               | default                                                                                                                                                                                                                            | (null)                                                      |     (null) | f
 log_executor_stats                     | off                                                                                                                                                                                                                                | (null) | Statistics / Monitoring                                           | Writes executor performance statistics to the server log.                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_file_mode                          | 0600                                                                                                                                                                                                                               | (null) | Reporting and Logging / Where to Log                              | Sets the file permissions for log files.                                                                                                                                                                                                                                                                                                                                                                                                                       | The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)                                                                                                                                                                                                                                                                     | sighup            | integer | default              | 0           | 511          | (null)                                                                         | 384                                   | 384                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_filename                           | postgres-%Y-%m-%d.log                                                                                                                                                                                                              | (null) | Reporting and Logging / Where to Log                              | Sets the file name pattern for log files.                                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | configuration file   | (null)      | (null)       | (null)                                                                         | postgresql-%Y-%m-%d_%H%M%S.log        | postgres-%Y-%m-%d.log                                                                                                                                                                                                              | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |          9 | f
 log_hostname                           | on                                                                                                                                                                                                                                 | (null) | Reporting and Logging / What to Log                               | Logs the host name in the connection logs.                                                                                                                                                                                                                                                                                                                                                                                                                     | By default, connection logs only show the IP address of the connecting host. If you want them to show the host name you can turn this on, but depending on your host name resolution setup it might impose a non-negligible performance penalty.                                                                                                                                                                                                                            | sighup            | bool    | configuration file   | (null)      | (null)       | (null)                                                                         | off                                   | on                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         11 | f
 log_line_prefix                        | %t [%p]: [%l-1] user=%u,db=%d [%x]                                                                                                                                                                                                 | (null) | Reporting and Logging / What to Log                               | Controls information prefixed to each log line.                                                                                                                                                                                                                                                                                                                                                                                                                | If blank, no prefix is used.                                                                                                                                                                                                                                                                                                                                                                                                                                                | sighup            | string  | configuration file   | (null)      | (null)       | (null)                                                                         | %m [%p]                               | %t [%p]: [%l-1] user=%u,db=%d [%x]                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         12 | f
 log_lock_waits                         | on                                                                                                                                                                                                                                 | (null) | Reporting and Logging / What to Log                               | Logs long lock waits.                                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | configuration file   | (null)      | (null)       | (null)                                                                         | off                                   | on                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         13 | f
 log_min_duration_sample                | -1                                                                                                                                                                                                                                 | ms     | Reporting and Logging / When to Log                               | Sets the minimum execution time above which a sample of statements will be logged. Sampling is determined by log_statement_sample_rate.                                                                                                                                                                                                                                                                                                                        | Zero logs a sample of all queries. -1 turns this feature off.                                                                                                                                                                                                                                                                                                                                                                                                               | superuser         | integer | default              | -1          | 2147483647   | (null)                                                                         | -1                                    | -1                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 log_min_duration_statement             | 600000                                                                                                                                                                                                                             | ms     | Reporting and Logging / When to Log                               | Sets the minimum execution time above which all statements will be logged.                                                                                                                                                                                                                                                                                                                                                                                     | Zero prints all queries. -1 turns this feature off.                                                                                                                                                                                                                                                                                                                                                                                                                         | superuser         | integer | configuration file   | -1          | 2147483647   | (null)                                                                         | -1                                    | 600000                                                                                                                                                                                                                             | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.memory.conf |         14 | f
 log_min_error_statement                | error                                                                                                                                                                                                                              | (null) | Reporting and Logging / When to Log                               | Causes all statements generating error at or above this level to be logged.                                                                                                                                                                                                                                                                                                                                                                                    | Each level includes all the levels that follow it. The later the level, the fewer messages are sent.                                                                                                                                                                                                                                                                                                                                                                        | superuser         | enum    | default              | (null)      | (null)       | {debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic} | error                                 | error                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 log_min_messages                       | warning                                                                                                                                                                                                                            | (null) | Reporting and Logging / When to Log                               | Sets the message levels that are logged.                                                                                                                                                                                                                                                                                                                                                                                                                       | Each level includes all the levels that follow it. The later the level, the fewer messages are sent.                                                                                                                                                                                                                                                                                                                                                                        | superuser         | enum    | default              | (null)      | (null)       | {debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic} | warning                               | warning                                                                                                                                                                                                                            | (null)                                                      |     (null) | f
 log_parameter_max_length               | -1                                                                                                                                                                                                                                 | B      | Reporting and Logging / What to Log                               | When logging statements, limit logged parameter values to first N bytes.                                                                                                                                                                                                                                                                                                                                                                                       | -1 to print values in full.                                                                                                                                                                                                                                                                                                                                                                                                                                                 | superuser         | integer | default              | -1          | 1073741823   | (null)                                                                         | -1                                    | -1                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 log_parameter_max_length_on_error      | 0                                                                                                                                                                                                                                  | B      | Reporting and Logging / What to Log                               | When reporting an error, limit logged parameter values to first N bytes.                                                                                                                                                                                                                                                                                                                                                                                       | -1 to print values in full.                                                                                                                                                                                                                                                                                                                                                                                                                                                 | user              | integer | default              | -1          | 1073741823   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 log_parser_stats                       | off                                                                                                                                                                                                                                | (null) | Statistics / Monitoring                                           | Writes parser performance statistics to the server log.                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_planner_stats                      | off                                                                                                                                                                                                                                | (null) | Statistics / Monitoring                                           | Writes planner performance statistics to the server log.                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_recovery_conflict_waits            | off                                                                                                                                                                                                                                | (null) | Reporting and Logging / What to Log                               | Logs standby recovery conflict waits.                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_replication_commands               | off                                                                                                                                                                                                                                | (null) | Reporting and Logging / What to Log                               | Logs each replication command.                                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_rotation_age                       | 1440                                                                                                                                                                                                                               | min    | Reporting and Logging / Where to Log                              | Automatic log file rotation will occur after N minutes.                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | configuration file   | 0           | 35791394     | (null)                                                                         | 1440                                  | 1440                                                                                                                                                                                                                               | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        451 | f
 log_rotation_size                      | 0                                                                                                                                                                                                                                  | kB     | Reporting and Logging / Where to Log                              | Automatic log file rotation will occur after N kilobytes.                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | configuration file   | 0           | 2097151      | (null)                                                                         | 10240                                 | 0                                                                                                                                                                                                                                  | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        453 | f
 log_statement                          | none                                                                                                                                                                                                                               | (null) | Reporting and Logging / What to Log                               | Sets the type of statements logged.                                                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | enum    | default              | (null)      | (null)       | {none,ddl,mod,all}                                                             | none                                  | none                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 log_statement_sample_rate              | 1                                                                                                                                                                                                                                  | (null) | Reporting and Logging / When to Log                               | Fraction of statements exceeding log_min_duration_sample to be logged.                                                                                                                                                                                                                                                                                                                                                                                         | Use a value between 0.0 (never log) and 1.0 (always log).                                                                                                                                                                                                                                                                                                                                                                                                                   | superuser         | real    | default              | 0           | 1            | (null)                                                                         | 1                                     | 1                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 log_statement_stats                    | off                                                                                                                                                                                                                                | (null) | Statistics / Monitoring                                           | Writes cumulative performance statistics to the server log.                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 log_temp_files                         | -1                                                                                                                                                                                                                                 | kB     | Reporting and Logging / What to Log                               | Log the use of temporary files larger than this number of kilobytes.                                                                                                                                                                                                                                                                                                                                                                                           | Zero logs all files. The default is -1 (turning this feature off).                                                                                                                                                                                                                                                                                                                                                                                                          | superuser         | integer | default              | -1          | 2147483647   | (null)                                                                         | -1                                    | -1                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 log_timezone                           | America/New_York                                                                                                                                                                                                                   | (null) | Reporting and Logging / What to Log                               | Sets the time zone to use in log messages.                                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | configuration file   | (null)      | (null)       | (null)                                                                         | GMT                                   | America/New_York                                                                                                                                                                                                                   | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        580 | f
 log_transaction_sample_rate            | 0                                                                                                                                                                                                                                  | (null) | Reporting and Logging / When to Log                               | Sets the fraction of transactions from which to log all statements.                                                                                                                                                                                                                                                                                                                                                                                            | Use a value between 0.0 (never log) and 1.0 (log all statements for all transactions).                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | real    | default              | 0           | 1            | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 log_truncate_on_rotation               | off                                                                                                                                                                                                                                | (null) | Reporting and Logging / Where to Log                              | Truncate existing log files of same name during log rotation.                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | configuration file   | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         10 | f
 logging_collector                      | on                                                                                                                                                                                                                                 | (null) | Reporting and Logging / Where to Log                              | Start a subprocess to capture stderr output and/or csvlogs into log files.                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | bool    | configuration file   | (null)      | (null)       | (null)                                                                         | off                                   | on                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        439 | f
 logical_decoding_work_mem              | 65536                                                                                                                                                                                                                              | kB     | Resource Usage / Memory                                           | Sets the maximum memory to be used for logical decoding.                                                                                                                                                                                                                                                                                                                                                                                                       | This much memory can be used by each internal reorder buffer before spilling to disk.                                                                                                                                                                                                                                                                                                                                                                                       | user              | integer | default              | 64          | 2147483647   | (null)                                                                         | 65536                                 | 65536                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 maintenance_io_concurrency             | 10                                                                                                                                                                                                                                 | (null) | Resource Usage / Asynchronous Behavior                            | A variant of effective_io_concurrency that is used for maintenance work.                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 1000         | (null)                                                                         | 10                                    | 10                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 maintenance_work_mem                   | 1048576                                                                                                                                                                                                                            | kB     | Resource Usage / Memory                                           | Sets the maximum memory to be used for maintenance operations.                                                                                                                                                                                                                                                                                                                                                                                                 | This includes operations such as VACUUM and CREATE INDEX.                                                                                                                                                                                                                                                                                                                                                                                                                   | user              | integer | configuration file   | 1024        | 2147483647   | (null)                                                                         | 65536                                 | 1048576                                                                                                                                                                                                                            | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.memory.conf |          2 | f
 max_connections                        | 300                                                                                                                                                                                                                                | (null) | Connections and Authentication / Connection Settings              | Sets the maximum number of concurrent connections.                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | configuration file   | 1           | 262143       | (null)                                                                         | 100                                   | 300                                                                                                                                                                                                                                | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.memory.conf |          4 | f
 max_files_per_process                  | 1000                                                                                                                                                                                                                               | (null) | Resource Usage / Kernel Resources                                 | Sets the maximum number of simultaneously open files for each server process.                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 64          | 2147483647   | (null)                                                                         | 1000                                  | 1000                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 max_function_args                      | 100                                                                                                                                                                                                                                | (null) | Preset Options                                                    | Shows the maximum number of function arguments.                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | integer | default              | 100         | 100          | (null)                                                                         | 100                                   | 100                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 max_identifier_length                  | 63                                                                                                                                                                                                                                 | (null) | Preset Options                                                    | Shows the maximum identifier length.                                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | integer | default              | 63          | 63           | (null)                                                                         | 63                                    | 63                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 max_index_keys                         | 32                                                                                                                                                                                                                                 | (null) | Preset Options                                                    | Shows the maximum number of index keys.                                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | integer | default              | 32          | 32           | (null)                                                                         | 32                                    | 32                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 max_locks_per_transaction              | 1024                                                                                                                                                                                                                               | (null) | Lock Management                                                   | Sets the maximum number of locks per transaction.                                                                                                                                                                                                                                                                                                                                                                                                              | The shared lock table is sized on the assumption that at most max_locks_per_transaction * max_connections distinct objects will need to be locked at any one time.                                                                                                                                                                                                                                                                                                          | postmaster        | integer | configuration file   | 10          | 2147483647   | (null)                                                                         | 64                                    | 1024                                                                                                                                                                                                                               | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.memory.conf |         11 | f
 max_logical_replication_workers        | 4                                                                                                                                                                                                                                  | (null) | Replication / Subscribers                                         | Maximum number of logical replication worker processes.                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 0           | 262143       | (null)                                                                         | 4                                     | 4                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 max_parallel_maintenance_workers       | 2                                                                                                                                                                                                                                  | (null) | Resource Usage / Asynchronous Behavior                            | Sets the maximum number of parallel processes per maintenance operation.                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 1024         | (null)                                                                         | 2                                     | 2                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 max_parallel_workers                   | 8                                                                                                                                                                                                                                  | (null) | Resource Usage / Asynchronous Behavior                            | Sets the maximum number of parallel workers that can be active at one time.                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 1024         | (null)                                                                         | 8                                     | 8                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 max_parallel_workers_per_gather        | 2                                                                                                                                                                                                                                  | (null) | Resource Usage / Asynchronous Behavior                            | Sets the maximum number of parallel processes per executor node.                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 1024         | (null)                                                                         | 2                                     | 2                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 max_pred_locks_per_page                | 2                                                                                                                                                                                                                                  | (null) | Lock Management                                                   | Sets the maximum number of predicate-locked tuples per page.                                                                                                                                                                                                                                                                                                                                                                                                   | If more than this number of tuples on the same page are locked by a connection, those locks are replaced by a page-level lock.                                                                                                                                                                                                                                                                                                                                              | sighup            | integer | default              | 0           | 2147483647   | (null)                                                                         | 2                                     | 2                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 max_pred_locks_per_relation            | -2                                                                                                                                                                                                                                 | (null) | Lock Management                                                   | Sets the maximum number of predicate-locked pages and tuples per relation.                                                                                                                                                                                                                                                                                                                                                                                     | If more than this total of pages and tuples in the same relation are locked by a connection, those locks are replaced by a relation-level lock.                                                                                                                                                                                                                                                                                                                             | sighup            | integer | default              | -2147483648 | 2147483647   | (null)                                                                         | -2                                    | -2                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 max_pred_locks_per_transaction         | 64                                                                                                                                                                                                                                 | (null) | Lock Management                                                   | Sets the maximum number of predicate locks per transaction.                                                                                                                                                                                                                                                                                                                                                                                                    | The shared predicate lock table is sized on the assumption that at most max_pred_locks_per_transaction * max_connections distinct objects will need to be locked at any one time.                                                                                                                                                                                                                                                                                           | postmaster        | integer | default              | 10          | 2147483647   | (null)                                                                         | 64                                    | 64                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 max_prepared_transactions              | 0                                                                                                                                                                                                                                  | (null) | Resource Usage / Memory                                           | Sets the maximum number of simultaneously prepared transactions.                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 0           | 262143       | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 max_replication_slots                  | 10                                                                                                                                                                                                                                 | (null) | Replication / Sending Servers                                     | Sets the maximum number of simultaneously defined replication slots.                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 0           | 262143       | (null)                                                                         | 10                                    | 10                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 max_slot_wal_keep_size                 | -1                                                                                                                                                                                                                                 | MB     | Replication / Sending Servers                                     | Sets the maximum WAL size that can be reserved by replication slots.                                                                                                                                                                                                                                                                                                                                                                                           | Replication slots will be marked as failed, and segments released for deletion or recycling, if this much space is occupied by WAL on disk.                                                                                                                                                                                                                                                                                                                                 | sighup            | integer | default              | -1          | 2147483647   | (null)                                                                         | -1                                    | -1                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 max_stack_depth                        | 2048                                                                                                                                                                                                                               | kB     | Resource Usage / Memory                                           | Sets the maximum stack depth, in kilobytes.                                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | integer | environment variable | 100         | 2147483647   | (null)                                                                         | 100                                   | 2048                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 max_standby_archive_delay              | 30000                                                                                                                                                                                                                              | ms     | Replication / Standby Servers                                     | Sets the maximum delay before canceling queries when a hot standby server is processing archived WAL data.                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | -1          | 2147483647   | (null)                                                                         | 30000                                 | 30000                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 max_standby_streaming_delay            | 30000                                                                                                                                                                                                                              | ms     | Replication / Standby Servers                                     | Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | -1          | 2147483647   | (null)                                                                         | 30000                                 | 30000                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 max_sync_workers_per_subscription      | 2                                                                                                                                                                                                                                  | (null) | Replication / Subscribers                                         | Maximum number of table synchronization workers per subscription.                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 262143       | (null)                                                                         | 2                                     | 2                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 max_wal_senders                        | 10                                                                                                                                                                                                                                 | (null) | Replication / Sending Servers                                     | Sets the maximum number of simultaneously running WAL sender processes.                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 0           | 262143       | (null)                                                                         | 10                                    | 10                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 max_wal_size                           | 8192                                                                                                                                                                                                                               | MB     | Write-Ahead Log / Checkpoints                                     | Sets the WAL size that triggers a checkpoint.                                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | configuration file   | 2           | 2147483647   | (null)                                                                         | 1024                                  | 8192                                                                                                                                                                                                                               | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         28 | f
 max_worker_processes                   | 8                                                                                                                                                                                                                                  | (null) | Resource Usage / Asynchronous Behavior                            | Maximum number of concurrent worker processes.                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 0           | 262143       | (null)                                                                         | 8                                     | 8                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 min_dynamic_shared_memory              | 0                                                                                                                                                                                                                                  | MB     | Resource Usage / Memory                                           | Amount of dynamic shared memory reserved at startup.                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 min_parallel_index_scan_size           | 64                                                                                                                                                                                                                                 | 8kB    | Query Tuning / Planner Cost Constants                             | Sets the minimum amount of index data for a parallel scan.                                                                                                                                                                                                                                                                                                                                                                                                     | If the planner estimates that it will read a number of index pages too small to reach this limit, a parallel scan will not be considered.                                                                                                                                                                                                                                                                                                                                   | user              | integer | default              | 0           | 715827882    | (null)                                                                         | 64                                    | 64                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 min_parallel_table_scan_size           | 1024                                                                                                                                                                                                                               | 8kB    | Query Tuning / Planner Cost Constants                             | Sets the minimum amount of table data for a parallel scan.                                                                                                                                                                                                                                                                                                                                                                                                     | If the planner estimates that it will read a number of table pages too small to reach this limit, a parallel scan will not be considered.                                                                                                                                                                                                                                                                                                                                   | user              | integer | default              | 0           | 715827882    | (null)                                                                         | 1024                                  | 1024                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 min_wal_size                           | 80                                                                                                                                                                                                                                 | MB     | Write-Ahead Log / Checkpoints                                     | Sets the minimum size to shrink the WAL to.                                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | configuration file   | 2           | 2147483647   | (null)                                                                         | 80                                    | 80                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        241 | f
 old_snapshot_threshold                 | -1                                                                                                                                                                                                                                 | min    | Resource Usage / Asynchronous Behavior                            | Time before a snapshot is too old to read pages changed after the snapshot was taken.                                                                                                                                                                                                                                                                                                                                                                          | A value of -1 disables this feature.                                                                                                                                                                                                                                                                                                                                                                                                                                        | postmaster        | integer | default              | -1          | 86400        | (null)                                                                         | -1                                    | -1                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 parallel_leader_participation          | on                                                                                                                                                                                                                                 | (null) | Resource Usage / Asynchronous Behavior                            | Controls whether Gather and Gather Merge also run subplans.                                                                                                                                                                                                                                                                                                                                                                                                    | Should gather nodes also run subplans or just gather tuples?                                                                                                                                                                                                                                                                                                                                                                                                                | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 parallel_setup_cost                    | 1000                                                                                                                                                                                                                               | (null) | Query Tuning / Planner Cost Constants                             | Sets the planner's estimate of the cost of starting up worker processes for parallel query.                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 1.79769e+308 | (null)                                                                         | 1000                                  | 1000                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 parallel_tuple_cost                    | 0.1                                                                                                                                                                                                                                | (null) | Query Tuning / Planner Cost Constants                             | Sets the planner's estimate of the cost of passing each tuple (row) from worker to leader backend.                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 1.79769e+308 | (null)                                                                         | 0.1                                   | 0.1                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 password_encryption                    | scram-sha-256                                                                                                                                                                                                                      | (null) | Connections and Authentication / Authentication                   | Chooses the algorithm for encrypting passwords.                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | configuration file   | (null)      | (null)       | {md5,scram-sha-256}                                                            | scram-sha-256                         | scram-sha-256                                                                                                                                                                                                                      | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         17 | f
 pg_hint_plan.debug_print               | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Logs results of hint parsing.                                                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {off,on,detailed,verbose}                                                      | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pg_hint_plan.enable_hint               | on                                                                                                                                                                                                                                 | (null) | Customized Options                                                | Force planner to use plans specified in the hint comment preceding to the query.                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 pg_hint_plan.enable_hint_table         | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Let pg_hint_plan look up the hint table.                                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pg_hint_plan.message_level             | log                                                                                                                                                                                                                                | (null) | Customized Options                                                | Message level of debug messages.                                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {debug5,debug4,debug3,debug2,debug1,log,info,notice,warning,error}             | log                                   | log                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pg_hint_plan.parse_messages            | info                                                                                                                                                                                                                               | (null) | Customized Options                                                | Message level of parse errors.                                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {debug5,debug4,debug3,debug2,debug1,log,info,notice,warning,error}             | info                                  | info                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 pg_qualstats.enabled                   | on                                                                                                                                                                                                                                 | (null) | Customized Options                                                | Enable / Disable pg_qualstats                                                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 pg_qualstats.max                       | 1000                                                                                                                                                                                                                               | (null) | Customized Options                                                | Sets the maximum number of statements tracked by pg_qualstats.                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 100         | 2147483647   | (null)                                                                         | 1000                                  | 1000                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 pg_qualstats.min_err_estimate_num      | 0                                                                                                                                                                                                                                  | (null) | Customized Options                                                | Error estimation num threshold to save quals                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 pg_qualstats.min_err_estimate_ratio    | 0                                                                                                                                                                                                                                  | (null) | Customized Options                                                | Error estimation ratio threshold to save quals                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 pg_qualstats.resolve_oids              | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Store names alongside the oid. Eats MUCH more space!                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pg_qualstats.sample_rate               | 0.00333333                                                                                                                                                                                                                         | (null) | Customized Options                                                | Sampling rate. 1 means every query, 0.2 means 1 in five queries                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | -1          | 1            | (null)                                                                         | -1                                    | 0.00333333                                                                                                                                                                                                                         | (null)                                                      |     (null) | f
 pg_qualstats.track_constants           | on                                                                                                                                                                                                                                 | (null) | Customized Options                                                | Enable / Disable pg_qualstats constants tracking                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 pg_qualstats.track_pg_catalog          | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Track quals on system catalogs too.                                                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pg_show_plans.enable                   | on                                                                                                                                                                                                                                 | (null) | Customized Options                                                | Whether the plan can be shown.                                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 pg_show_plans.enable_txid              | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Whether txid is used as a hash key.                                                                                                                                                                                                                                                                                                                                                                                                                            | If true, the pg_show_plan function can efficiently process the GC, however, it has the side effect of consuming TXID whenever execute a query, even if it doesn't really need it like SELECT 1.                                                                                                                                                                                                                                                                             | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pg_show_plans.max_plan_length          | 8192                                                                                                                                                                                                                               | (null) | Customized Options                                                | Set the maximum plan length.                                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 1024        | 102400       | (null)                                                                         | 8192                                  | 8192                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 pg_show_plans.plan_format              | text                                                                                                                                                                                                                               | (null) | Customized Options                                                | Set the output format of query plans.                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | enum    | default              | (null)      | (null)       | {text,json}                                                                    | text                                  | text                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 pg_stat_statements.max                 | 5000                                                                                                                                                                                                                               | (null) | Customized Options                                                | Sets the maximum number of statements tracked by pg_stat_statements.                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 100         | 1073741823   | (null)                                                                         | 5000                                  | 5000                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 pg_stat_statements.save                | on                                                                                                                                                                                                                                 | (null) | Customized Options                                                | Save pg_stat_statements statistics across server shutdowns.                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 pg_stat_statements.track               | top                                                                                                                                                                                                                                | (null) | Customized Options                                                | Selects which statements are tracked by pg_stat_statements.                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | enum    | default              | (null)      | (null)       | {none,top,all}                                                                 | top                                   | top                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pg_stat_statements.track_planning      | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Selects whether planning duration is tracked by pg_stat_statements.                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pg_stat_statements.track_utility       | on                                                                                                                                                                                                                                 | (null) | Customized Options                                                | Selects whether utility commands are tracked by pg_stat_statements.                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 pgaudit.log                            | ddl, role                                                                                                                                                                                                                          | (null) | Customized Options                                                | Specifies which classes of statements will be logged by session audit logging. Multiple classes can be provided using a comma-separated list and classes can be subtracted by prefacing the class with a - sign.                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | string  | configuration file   | (null)      | (null)       | (null)                                                                         | none                                  | ddl, role                                                                                                                                                                                                                          | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         24 | f
 pgaudit.log_catalog                    | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Specifies that session logging should be enabled in the case where all relations in a statement are in pg_catalog.  Disabling this setting will reduce noise in the log from tools like psql and PgAdmin that query the catalog heavily.                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | configuration file   | (null)      | (null)       | (null)                                                                         | on                                    | off                                                                                                                                                                                                                                | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         25 | f
 pgaudit.log_client                     | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Specifies whether audit messages should be visible to the client. This setting should generally be left disabled but may be useful for debugging or other purposes.                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pgaudit.log_level                      | log                                                                                                                                                                                                                                | (null) | Customized Options                                                | Specifies the log level that will be used for log entries. This setting is used for regression testing and may also be useful to end users for testing or other purposes.  It is not intended to be used in a production environment as it may leak which statements are being logged to the user.                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | string  | default              | (null)      | (null)       | (null)                                                                         | log                                   | log                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pgaudit.log_parameter                  | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Specifies that audit logging should include the parameters that were passed with the statement. When parameters are present they will be be included in CSV format after the statement text.                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pgaudit.log_relation                   | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Specifies whether session audit logging should create a separate log entry for each relation referenced in a SELECT or DML statement. This is a useful shortcut for exhaustive logging without using object audit logging.                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pgaudit.log_rows                       | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Specifies whether logging will include the rows retrieved or affected by a statement.                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pgaudit.log_statement                  | on                                                                                                                                                                                                                                 | (null) | Customized Options                                                | Specifies whether logging will include the statement text and parameters.  Depending on requirements, the full statement text might not be required in the audit log.                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 pgaudit.log_statement_once             | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry.  Disabling this setting will result in less verbose logging but may make it more difficult to determine the statement that generated a log entry, though the statement/substatement pair along with the process id should suffice to identify the statement text logged with a previous entry. | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 pgaudit.role                           |                                                                                                                                                                                                                                    | (null) | Customized Options                                                | Specifies the master role to use for object audit logging.  Muliple audit roles can be defined by granting them to the master role. This allows multiple groups to be in charge of different aspects of audit logging.                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 plan_cache_mode                        | auto                                                                                                                                                                                                                               | (null) | Query Tuning / Other Planner Options                              | Controls the planner's selection of custom or generic plan.                                                                                                                                                                                                                                                                                                                                                                                                    | Prepared statements can have custom and generic plans, and the planner will attempt to choose which is better.  This can be set to override the default behavior.                                                                                                                                                                                                                                                                                                           | user              | enum    | default              | (null)      | (null)       | {auto,force_generic_plan,force_custom_plan}                                    | auto                                  | auto                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 plpgsql.check_asserts                  | on                                                                                                                                                                                                                                 | (null) | Customized Options                                                | Perform checks given in ASSERT statements.                                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 plpgsql.extra_errors                   | none                                                                                                                                                                                                                               | (null) | Customized Options                                                | List of programming constructs that should produce an error.                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | default              | (null)      | (null)       | (null)                                                                         | none                                  | none                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 plpgsql.extra_warnings                 | none                                                                                                                                                                                                                               | (null) | Customized Options                                                | List of programming constructs that should produce a warning.                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | default              | (null)      | (null)       | (null)                                                                         | none                                  | none                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 plpgsql.print_strict_params            | off                                                                                                                                                                                                                                | (null) | Customized Options                                                | Print information about parameters in the DETAIL part of the error messages generated on INTO ... STRICT failures.                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 plpgsql.variable_conflict              | error                                                                                                                                                                                                                              | (null) | Customized Options                                                | Sets handling of conflicts between PL/pgSQL variable names and table column names.                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | enum    | default              | (null)      | (null)       | {error,use_variable,use_column}                                                | error                                 | error                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 port                                   | 10101                                                                                                                                                                                                                              | (null) | Connections and Authentication / Connection Settings              | Sets the TCP port the server listens on.                                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | configuration file   | 1           | 65535        | (null)                                                                         | 5432                                  | 10101                                                                                                                                                                                                                              | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         18 | f
 post_auth_delay                        | 0                                                                                                                                                                                                                                  | s      | Developer Options                                                 | Waits N seconds on connection startup after authentication.                                                                                                                                                                                                                                                                                                                                                                                                    | This allows attaching a debugger to the process.                                                                                                                                                                                                                                                                                                                                                                                                                            | backend           | integer | default              | 0           | 2147         | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 pre_auth_delay                         | 0                                                                                                                                                                                                                                  | s      | Developer Options                                                 | Waits N seconds on connection startup before authentication.                                                                                                                                                                                                                                                                                                                                                                                                   | This allows attaching a debugger to the process.                                                                                                                                                                                                                                                                                                                                                                                                                            | sighup            | integer | default              | 0           | 60           | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 primary_conninfo                       |                                                                                                                                                                                                                                    | (null) | Replication / Standby Servers                                     | Sets the connection string to be used to connect to the sending server.                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 primary_slot_name                      |                                                                                                                                                                                                                                    | (null) | Replication / Standby Servers                                     | Sets the name of the replication slot to use on the sending server.                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 promote_trigger_file                   |                                                                                                                                                                                                                                    | (null) | Replication / Standby Servers                                     | Specifies a file name whose presence ends recovery in the standby.                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 quote_all_identifiers                  | off                                                                                                                                                                                                                                | (null) | Version and Platform Compatibility / Previous PostgreSQL Versions | When generating SQL fragments, quote all identifiers.                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 random_page_cost                       | 4                                                                                                                                                                                                                                  | (null) | Query Tuning / Planner Cost Constants                             | Sets the planner's estimate of the cost of a nonsequentially fetched disk page.                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 1.79769e+308 | (null)                                                                         | 4                                     | 4                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 recovery_end_command                   |                                                                                                                                                                                                                                    | (null) | Write-Ahead Log / Archive Recovery                                | Sets the shell command that will be executed once at the end of recovery.                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 recovery_init_sync_method              | fsync                                                                                                                                                                                                                              | (null) | Error Handling                                                    | Sets the method for synchronizing the data directory before crash recovery.                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | enum    | default              | (null)      | (null)       | {fsync,syncfs}                                                                 | fsync                                 | fsync                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 recovery_min_apply_delay               | 0                                                                                                                                                                                                                                  | ms     | Replication / Standby Servers                                     | Sets the minimum delay for applying changes during recovery.                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 recovery_target                        |                                                                                                                                                                                                                                    | (null) | Write-Ahead Log / Recovery Target                                 | Set to "immediate" to end recovery as soon as a consistent state is reached.                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 recovery_target_action                 | pause                                                                                                                                                                                                                              | (null) | Write-Ahead Log / Recovery Target                                 | Sets the action to perform upon reaching the recovery target.                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | enum    | default              | (null)      | (null)       | {pause,promote,shutdown}                                                       | pause                                 | pause                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 recovery_target_inclusive              | on                                                                                                                                                                                                                                 | (null) | Write-Ahead Log / Recovery Target                                 | Sets whether to include or exclude transaction with recovery target.                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 recovery_target_lsn                    |                                                                                                                                                                                                                                    | (null) | Write-Ahead Log / Recovery Target                                 | Sets the LSN of the write-ahead log location up to which recovery will proceed.                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 recovery_target_name                   |                                                                                                                                                                                                                                    | (null) | Write-Ahead Log / Recovery Target                                 | Sets the named restore point up to which recovery will proceed.                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 recovery_target_time                   |                                                                                                                                                                                                                                    | (null) | Write-Ahead Log / Recovery Target                                 | Sets the time stamp up to which recovery will proceed.                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 recovery_target_timeline               | latest                                                                                                                                                                                                                             | (null) | Write-Ahead Log / Recovery Target                                 | Specifies the timeline to recover into.                                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         | latest                                | latest                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 recovery_target_xid                    |                                                                                                                                                                                                                                    | (null) | Write-Ahead Log / Recovery Target                                 | Sets the transaction ID up to which recovery will proceed.                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 remove_temp_files_after_crash          | on                                                                                                                                                                                                                                 | (null) | Developer Options                                                 | Remove temporary files after backend crash.                                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 restart_after_crash                    | on                                                                                                                                                                                                                                 | (null) | Error Handling                                                    | Reinitialize server after backend crash.                                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 restore_command                        |                                                                                                                                                                                                                                    | (null) | Write-Ahead Log / Archive Recovery                                | Sets the shell command that will be called to retrieve an archived WAL file.                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 restrict_nonsystem_relation_kind       |                                                                                                                                                                                                                                    | (null) | Client Connection Defaults / Statement Behavior                   | Sets relation kinds of non-system relation to restrict use                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 row_security                           | on                                                                                                                                                                                                                                 | (null) | Client Connection Defaults / Statement Behavior                   | Enable row security.                                                                                                                                                                                                                                                                                                                                                                                                                                           | When enabled, row security will be applied to all users.                                                                                                                                                                                                                                                                                                                                                                                                                    | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 search_path                            | "$user", sbs_public_ext_dblink, sbs_public_ext_gzip, sbs_public_ext_pg_qualstats, sbs_public_ext_pg_show_plans, sbs_public_ext_pg_stat_statements, sbs_public_ext_pldbgapi, sbs_public_ext_tablefunc, sbs_public_timetable, public | (null) | Client Connection Defaults / Statement Behavior                   | Sets the schema search order for names that are not schema-qualified.                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | database             | (null)      | (null)       | (null)                                                                         | "$user", public                       | "$user", sbs_public_ext_dblink, sbs_public_ext_gzip, sbs_public_ext_pg_qualstats, sbs_public_ext_pg_show_plans, sbs_public_ext_pg_stat_statements, sbs_public_ext_pldbgapi, sbs_public_ext_tablefunc, sbs_public_timetable, public | (null)                                                      |     (null) | f
 segment_size                           | 131072                                                                                                                                                                                                                             | 8kB    | Preset Options                                                    | Shows the number of pages per disk file.                                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | integer | default              | 131072      | 131072       | (null)                                                                         | 131072                                | 131072                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 seq_page_cost                          | 1                                                                                                                                                                                                                                  | (null) | Query Tuning / Planner Cost Constants                             | Sets the planner's estimate of the cost of a sequentially fetched disk page.                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 1.79769e+308 | (null)                                                                         | 1                                     | 1                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 server_encoding                        | UTF8                                                                                                                                                                                                                               | (null) | Preset Options                                                    | Shows the server (database) character set encoding.                                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | string  | override             | (null)      | (null)       | (null)                                                                         | SQL_ASCII                             | UTF8                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 server_version                         | 14.13                                                                                                                                                                                                                              | (null) | Preset Options                                                    | Shows the server version.                                                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | string  | default              | (null)      | (null)       | (null)                                                                         | 14.13                                 | 14.13                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 server_version_num                     | 140013                                                                                                                                                                                                                             | (null) | Preset Options                                                    | Shows the server version as an integer.                                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | integer | default              | 140013      | 140013       | (null)                                                                         | 140013                                | 140013                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 session_preload_libraries              | login_hook                                                                                                                                                                                                                         | (null) | Client Connection Defaults / Shared Library Preloading            | Lists shared libraries to preload into each backend.                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | string  | configuration file   | (null)      | (null)       | (null)                                                                         |                                       | login_hook                                                                                                                                                                                                                         | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         21 | f
 session_replication_role               | origin                                                                                                                                                                                                                             | (null) | Client Connection Defaults / Statement Behavior                   | Sets the session's behavior for triggers and rewrite rules.                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | enum    | default              | (null)      | (null)       | {origin,replica,local}                                                         | origin                                | origin                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 shared_buffers                         | 2097152                                                                                                                                                                                                                            | 8kB    | Resource Usage / Memory                                           | Sets the number of shared memory buffers used by the server.                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | configuration file   | 16          | 1073741823   | (null)                                                                         | 1024                                  | 2097152                                                                                                                                                                                                                            | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.memory.conf |          5 | f
 shared_memory_type                     | mmap                                                                                                                                                                                                                               | (null) | Resource Usage / Memory                                           | Selects the shared memory implementation used for the main shared memory region.                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | enum    | default              | (null)      | (null)       | {sysv,mmap}                                                                    | mmap                                  | mmap                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 shared_preload_libraries               | pg_hint_plan,auto_explain,pg_stat_statements,oracle_fdw,plugin_debugger,pg_show_plans,pgaudit,pg_qualstats,repmgr                                                                                                                  | (null) | Client Connection Defaults / Shared Library Preloading            | Lists shared libraries to preload into server.                                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | configuration file   | (null)      | (null)       | (null)                                                                         |                                       | pg_hint_plan,auto_explain,pg_stat_statements,oracle_fdw,plugin_debugger,pg_show_plans,pgaudit,pg_qualstats,repmgr                                                                                                                  | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         20 | f
 ssl                                    | on                                                                                                                                                                                                                                 | (null) | Connections and Authentication / SSL                              | Enables SSL connections.                                                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | configuration file   | (null)      | (null)       | (null)                                                                         | off                                   | on                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         33 | f
 ssl_ca_file                            |                                                                                                                                                                                                                                    | (null) | Connections and Authentication / SSL                              | Location of the SSL certificate authority file.                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 ssl_cert_file                          | server.crt                                                                                                                                                                                                                         | (null) | Connections and Authentication / SSL                              | Location of the SSL server certificate file.                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         | server.crt                            | server.crt                                                                                                                                                                                                                         | (null)                                                      |     (null) | f
 ssl_ciphers                            | HIGH:MEDIUM:+3DES:!aNULL                                                                                                                                                                                                           | (null) | Connections and Authentication / SSL                              | Sets the list of allowed SSL ciphers.                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         | HIGH:MEDIUM:+3DES:!aNULL              | HIGH:MEDIUM:+3DES:!aNULL                                                                                                                                                                                                           | (null)                                                      |     (null) | f
 ssl_crl_dir                            |                                                                                                                                                                                                                                    | (null) | Connections and Authentication / SSL                              | Location of the SSL certificate revocation list directory.                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 ssl_crl_file                           |                                                                                                                                                                                                                                    | (null) | Connections and Authentication / SSL                              | Location of the SSL certificate revocation list file.                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 ssl_dh_params_file                     |                                                                                                                                                                                                                                    | (null) | Connections and Authentication / SSL                              | Location of the SSL DH parameters file.                                                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 ssl_ecdh_curve                         | prime256v1                                                                                                                                                                                                                         | (null) | Connections and Authentication / SSL                              | Sets the curve to use for ECDH.                                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         | prime256v1                            | prime256v1                                                                                                                                                                                                                         | (null)                                                      |     (null) | f
 ssl_key_file                           | server.key                                                                                                                                                                                                                         | (null) | Connections and Authentication / SSL                              | Location of the SSL server private key file.                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         | server.key                            | server.key                                                                                                                                                                                                                         | (null)                                                      |     (null) | f
 ssl_library                            | OpenSSL                                                                                                                                                                                                                            | (null) | Preset Options                                                    | Shows the name of the SSL library.                                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | string  | default              | (null)      | (null)       | (null)                                                                         | OpenSSL                               | OpenSSL                                                                                                                                                                                                                            | (null)                                                      |     (null) | f
 ssl_max_protocol_version               |                                                                                                                                                                                                                                    | (null) | Connections and Authentication / SSL                              | Sets the maximum SSL/TLS protocol version to use.                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | enum    | default              | (null)      | (null)       | {"",TLSv1,TLSv1.1,TLSv1.2,TLSv1.3}                                             |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 ssl_min_protocol_version               | TLSv1.2                                                                                                                                                                                                                            | (null) | Connections and Authentication / SSL                              | Sets the minimum SSL/TLS protocol version to use.                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | enum    | default              | (null)      | (null)       | {TLSv1,TLSv1.1,TLSv1.2,TLSv1.3}                                                | TLSv1.2                               | TLSv1.2                                                                                                                                                                                                                            | (null)                                                      |     (null) | f
 ssl_passphrase_command                 |                                                                                                                                                                                                                                    | (null) | Connections and Authentication / SSL                              | Command to obtain passphrases for SSL.                                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 ssl_passphrase_command_supports_reload | off                                                                                                                                                                                                                                | (null) | Connections and Authentication / SSL                              | Also use ssl_passphrase_command during server reload.                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 ssl_prefer_server_ciphers              | on                                                                                                                                                                                                                                 | (null) | Connections and Authentication / SSL                              | Give priority to server ciphersuite order.                                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 standard_conforming_strings            | on                                                                                                                                                                                                                                 | (null) | Version and Platform Compatibility / Previous PostgreSQL Versions | Causes '...' strings to treat backslashes literally.                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 statement_timeout                      | 0                                                                                                                                                                                                                                  | ms     | Client Connection Defaults / Statement Behavior                   | Sets the maximum allowed duration of any statement.                                                                                                                                                                                                                                                                                                                                                                                                            | A value of 0 turns off the timeout.                                                                                                                                                                                                                                                                                                                                                                                                                                         | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 stats_temp_directory                   | pg_stat_tmp                                                                                                                                                                                                                        | (null) | Statistics / Query and Index Statistics Collector                 | Writes temporary statistics files to the specified directory.                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         | pg_stat_tmp                           | pg_stat_tmp                                                                                                                                                                                                                        | (null)                                                      |     (null) | f
 superuser_reserved_connections         | 3                                                                                                                                                                                                                                  | (null) | Connections and Authentication / Connection Settings              | Sets the number of connection slots reserved for superusers.                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 0           | 262143       | (null)                                                                         | 3                                     | 3                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 synchronize_seqscans                   | on                                                                                                                                                                                                                                 | (null) | Version and Platform Compatibility / Previous PostgreSQL Versions | Enable synchronized sequential scans.                                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 synchronous_commit                     | on                                                                                                                                                                                                                                 | (null) | Write-Ahead Log / Settings                                        | Sets the current transaction's synchronization level.                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {local,remote_write,remote_apply,on,off}                                       | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 synchronous_standby_names              |                                                                                                                                                                                                                                    | (null) | Replication / Primary Server                                      | Number of synchronous standbys and list of names of potential synchronous ones.                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 syslog_facility                        | local0                                                                                                                                                                                                                             | (null) | Reporting and Logging / Where to Log                              | Sets the syslog "facility" to be used when syslog enabled.                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | enum    | default              | (null)      | (null)       | {local0,local1,local2,local3,local4,local5,local6,local7}                      | local0                                | local0                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 syslog_ident                           | postgres                                                                                                                                                                                                                           | (null) | Reporting and Logging / Where to Log                              | Sets the program name used to identify PostgreSQL messages in syslog.                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | string  | default              | (null)      | (null)       | (null)                                                                         | postgres                              | postgres                                                                                                                                                                                                                           | (null)                                                      |     (null) | f
 syslog_sequence_numbers                | on                                                                                                                                                                                                                                 | (null) | Reporting and Logging / Where to Log                              | Add sequence number to syslog messages to avoid duplicate suppression.                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 syslog_split_messages                  | on                                                                                                                                                                                                                                 | (null) | Reporting and Logging / Where to Log                              | Split messages sent to syslog by lines and to fit into 1024 bytes.                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 tcp_keepalives_count                   | 9                                                                                                                                                                                                                                  | (null) | Connections and Authentication / Connection Settings              | Maximum number of TCP keepalive retransmits.                                                                                                                                                                                                                                                                                                                                                                                                                   | This controls the number of consecutive keepalive retransmits that can be lost before a connection is considered dead. A value of 0 uses the system default.                                                                                                                                                                                                                                                                                                                | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 tcp_keepalives_idle                    | 7200                                                                                                                                                                                                                               | s      | Connections and Authentication / Connection Settings              | Time between issuing TCP keepalives.                                                                                                                                                                                                                                                                                                                                                                                                                           | A value of 0 uses the system default.                                                                                                                                                                                                                                                                                                                                                                                                                                       | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 tcp_keepalives_interval                | 75                                                                                                                                                                                                                                 | s      | Connections and Authentication / Connection Settings              | Time between TCP keepalive retransmits.                                                                                                                                                                                                                                                                                                                                                                                                                        | A value of 0 uses the system default.                                                                                                                                                                                                                                                                                                                                                                                                                                       | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 tcp_user_timeout                       | 0                                                                                                                                                                                                                                  | ms     | Connections and Authentication / Connection Settings              | TCP user timeout.                                                                                                                                                                                                                                                                                                                                                                                                                                              | A value of 0 uses the system default.                                                                                                                                                                                                                                                                                                                                                                                                                                       | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 temp_buffers                           | 1024                                                                                                                                                                                                                               | 8kB    | Resource Usage / Memory                                           | Sets the maximum number of temporary buffers used by each session.                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 100         | 1073741823   | (null)                                                                         | 1024                                  | 1024                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 temp_file_limit                        | -1                                                                                                                                                                                                                                 | kB     | Resource Usage / Disk                                             | Limits the total size of all temporary files used by each process.                                                                                                                                                                                                                                                                                                                                                                                             | -1 means no limit.                                                                                                                                                                                                                                                                                                                                                                                                                                                          | superuser         | integer | default              | -1          | 2147483647   | (null)                                                                         | -1                                    | -1                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 temp_tablespaces                       |                                                                                                                                                                                                                                    | (null) | Client Connection Defaults / Statement Behavior                   | Sets the tablespace(s) to use for temporary tables and sort files.                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 TimeZone                               | America/New_York                                                                                                                                                                                                                   | (null) | Client Connection Defaults / Locale and Formatting                | Sets the time zone for displaying and interpreting time stamps.                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | configuration file   | (null)      | (null)       | (null)                                                                         | GMT                                   | America/New_York                                                                                                                                                                                                                   | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |        696 | f
 timezone_abbreviations                 | Default                                                                                                                                                                                                                            | (null) | Client Connection Defaults / Locale and Formatting                | Selects a file of time zone abbreviations.                                                                                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | string  | default              | (null)      | (null)       | (null)                                                                         | (null)                                | Default                                                                                                                                                                                                                            | (null)                                                      |     (null) | f
 trace_notify                           | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Generates debugging output for LISTEN and NOTIFY.                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 trace_recovery_messages                | log                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Enables logging of recovery-related debugging information.                                                                                                                                                                                                                                                                                                                                                                                                     | Each level includes all the levels that follow it. The later the level, the fewer messages are sent.                                                                                                                                                                                                                                                                                                                                                                        | sighup            | enum    | default              | (null)      | (null)       | {debug5,debug4,debug3,debug2,debug1,log,notice,warning,error}                  | log                                   | log                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 trace_sort                             | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Emit information about resource usage in sorting.                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 track_activities                       | on                                                                                                                                                                                                                                 | (null) | Statistics / Query and Index Statistics Collector                 | Collects information about executing commands.                                                                                                                                                                                                                                                                                                                                                                                                                 | Enables the collection of information on the currently executing command of each session, along with the time at which that command began execution.                                                                                                                                                                                                                                                                                                                        | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 track_activity_query_size              | 1024                                                                                                                                                                                                                               | B      | Statistics / Query and Index Statistics Collector                 | Sets the size reserved for pg_stat_activity.query, in bytes.                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | default              | 100         | 1048576      | (null)                                                                         | 1024                                  | 1024                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 track_commit_timestamp                 | off                                                                                                                                                                                                                                | (null) | Replication / Sending Servers                                     | Collects transaction commit time.                                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 track_counts                           | on                                                                                                                                                                                                                                 | (null) | Statistics / Query and Index Statistics Collector                 | Collects statistics on database activity.                                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 track_functions                        | pl                                                                                                                                                                                                                                 | (null) | Statistics / Query and Index Statistics Collector                 | Collects function-level statistics on database activity.                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | enum    | configuration file   | (null)      | (null)       | {none,pl,all}                                                                  | none                                  | pl                                                                                                                                                                                                                                 | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.conf        |         22 | f
 track_io_timing                        | off                                                                                                                                                                                                                                | (null) | Statistics / Query and Index Statistics Collector                 | Collects timing statistics for database I/O activity.                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 track_wal_io_timing                    | off                                                                                                                                                                                                                                | (null) | Statistics / Query and Index Statistics Collector                 | Collects timing statistics for WAL I/O activity.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 transaction_deferrable                 | off                                                                                                                                                                                                                                | (null) | Client Connection Defaults / Statement Behavior                   | Whether to defer a read-only serializable transaction until it can be executed with no possible serialization failures.                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | override             | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 transaction_isolation                  | read committed                                                                                                                                                                                                                     | (null) | Client Connection Defaults / Statement Behavior                   | Sets the current transaction's isolation level.                                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | override             | (null)      | (null)       | {serializable,"repeatable read","read committed","read uncommitted"}           | read committed                        | read committed                                                                                                                                                                                                                     | (null)                                                      |     (null) | f
 transaction_read_only                  | off                                                                                                                                                                                                                                | (null) | Client Connection Defaults / Statement Behavior                   | Sets the current transaction's read-only status.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | bool    | override             | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 transform_null_equals                  | off                                                                                                                                                                                                                                | (null) | Version and Platform Compatibility / Other Platforms and Clients  | Treats "expr=NULL" as "expr IS NULL".                                                                                                                                                                                                                                                                                                                                                                                                                          | When turned on, expressions of the form expr = NULL (or NULL = expr) are treated as expr IS NULL, that is, they return true if expr evaluates to the null value, and false otherwise. The correct behavior of expr = NULL is to always return null (unknown).                                                                                                                                                                                                               | user              | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 unix_socket_directories                | /var/run/postgresql                                                                                                                                                                                                                | (null) | Connections and Authentication / Connection Settings              | Sets the directories where Unix-domain sockets will be created.                                                                                                                                                                                                                                                                                                                                                                                                | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | string  | configuration file   | (null)      | (null)       | (null)                                                                         | /run/postgresql, /tmp                 | /var/run/postgresql                                                                                                                                                                                                                | /var/lib/pgsql/14/data/gmpubdev1/postgresql.conf            |         67 | f
 unix_socket_group                      |                                                                                                                                                                                                                                    | (null) | Connections and Authentication / Connection Settings              | Sets the owning group of the Unix-domain socket.                                                                                                                                                                                                                                                                                                                                                                                                               | The owning user of the socket is always the user that starts the server.                                                                                                                                                                                                                                                                                                                                                                                                    | postmaster        | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 unix_socket_permissions                | 0777                                                                                                                                                                                                                               | (null) | Connections and Authentication / Connection Settings              | Sets the access permissions of the Unix-domain socket.                                                                                                                                                                                                                                                                                                                                                                                                         | Unix-domain sockets use the usual Unix file system permission set. The parameter value is expected to be a numeric mode specification in the form accepted by the chmod and umask system calls. (To use the customary octal format the number must start with a 0 (zero).)                                                                                                                                                                                                  | postmaster        | integer | default              | 0           | 511          | (null)                                                                         | 511                                   | 511                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 update_process_title                   | on                                                                                                                                                                                                                                 | (null) | Reporting and Logging / Process Title                             | Updates the process title to show the active SQL command.                                                                                                                                                                                                                                                                                                                                                                                                      | Enables updating of the process title every time a new SQL command is received by the server.                                                                                                                                                                                                                                                                                                                                                                               | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 vacuum_cost_delay                      | 0                                                                                                                                                                                                                                  | ms     | Resource Usage / Cost-Based Vacuum Delay                          | Vacuum cost delay in milliseconds.                                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | real    | default              | 0           | 100          | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 vacuum_cost_limit                      | 200                                                                                                                                                                                                                                | (null) | Resource Usage / Cost-Based Vacuum Delay                          | Vacuum cost amount available before napping.                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 1           | 10000        | (null)                                                                         | 200                                   | 200                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 vacuum_cost_page_dirty                 | 20                                                                                                                                                                                                                                 | (null) | Resource Usage / Cost-Based Vacuum Delay                          | Vacuum cost for a page dirtied by vacuum.                                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 10000        | (null)                                                                         | 20                                    | 20                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 vacuum_cost_page_hit                   | 1                                                                                                                                                                                                                                  | (null) | Resource Usage / Cost-Based Vacuum Delay                          | Vacuum cost for a page found in the buffer cache.                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 10000        | (null)                                                                         | 1                                     | 1                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 vacuum_cost_page_miss                  | 2                                                                                                                                                                                                                                  | (null) | Resource Usage / Cost-Based Vacuum Delay                          | Vacuum cost for a page not found in the buffer cache.                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 10000        | (null)                                                                         | 2                                     | 2                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 vacuum_defer_cleanup_age               | 0                                                                                                                                                                                                                                  | (null) | Replication / Primary Server                                      | Number of transactions by which VACUUM and HOT cleanup should be deferred, if any.                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 1000000      | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 vacuum_failsafe_age                    | 1600000000                                                                                                                                                                                                                         | (null) | Client Connection Defaults / Statement Behavior                   | Age at which VACUUM should trigger failsafe to avoid a wraparound outage.                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2100000000   | (null)                                                                         | 1600000000                            | 1600000000                                                                                                                                                                                                                         | (null)                                                      |     (null) | f
 vacuum_freeze_min_age                  | 50000000                                                                                                                                                                                                                           | (null) | Client Connection Defaults / Statement Behavior                   | Minimum age at which VACUUM should freeze a table row.                                                                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 1000000000   | (null)                                                                         | 50000000                              | 50000000                                                                                                                                                                                                                           | (null)                                                      |     (null) | f
 vacuum_freeze_table_age                | 150000000                                                                                                                                                                                                                          | (null) | Client Connection Defaults / Statement Behavior                   | Age at which VACUUM should scan whole table to freeze tuples.                                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2000000000   | (null)                                                                         | 150000000                             | 150000000                                                                                                                                                                                                                          | (null)                                                      |     (null) | f
 vacuum_multixact_failsafe_age          | 1600000000                                                                                                                                                                                                                         | (null) | Client Connection Defaults / Statement Behavior                   | Multixact age at which VACUUM should trigger failsafe to avoid a wraparound outage.                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2100000000   | (null)                                                                         | 1600000000                            | 1600000000                                                                                                                                                                                                                         | (null)                                                      |     (null) | f
 vacuum_multixact_freeze_min_age        | 5000000                                                                                                                                                                                                                            | (null) | Client Connection Defaults / Statement Behavior                   | Minimum age at which VACUUM should freeze a MultiXactId in a table row.                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 1000000000   | (null)                                                                         | 5000000                               | 5000000                                                                                                                                                                                                                            | (null)                                                      |     (null) | f
 vacuum_multixact_freeze_table_age      | 150000000                                                                                                                                                                                                                          | (null) | Client Connection Defaults / Statement Behavior                   | Multixact age at which VACUUM should scan whole table to freeze tuples.                                                                                                                                                                                                                                                                                                                                                                                        | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2000000000   | (null)                                                                         | 150000000                             | 150000000                                                                                                                                                                                                                          | (null)                                                      |     (null) | f
 wal_block_size                         | 8192                                                                                                                                                                                                                               | (null) | Preset Options                                                    | Shows the block size in the write ahead log.                                                                                                                                                                                                                                                                                                                                                                                                                   | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | integer | default              | 8192        | 8192         | (null)                                                                         | 8192                                  | 8192                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 wal_buffers                            | 2048                                                                                                                                                                                                                               | 8kB    | Write-Ahead Log / Settings                                        | Sets the number of disk-page buffers in shared memory for WAL.                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | integer | override             | -1          | 262143       | (null)                                                                         | -1                                    | 2048                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 wal_compression                        | off                                                                                                                                                                                                                                | (null) | Write-Ahead Log / Settings                                        | Compresses full-page writes written in WAL file.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 wal_consistency_checking               |                                                                                                                                                                                                                                    | (null) | Developer Options                                                 | Sets the WAL resource managers for which WAL consistency checks are done.                                                                                                                                                                                                                                                                                                                                                                                      | Full-page images will be logged for all data blocks and cross-checked against the results of WAL replay.                                                                                                                                                                                                                                                                                                                                                                    | superuser         | string  | default              | (null)      | (null)       | (null)                                                                         |                                       |                                                                                                                                                                                                                                    | (null)                                                      |     (null) | f
 wal_init_zero                          | on                                                                                                                                                                                                                                 | (null) | Write-Ahead Log / Settings                                        | Writes zeroes to new WAL files before first use.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 wal_keep_size                          | 0                                                                                                                                                                                                                                  | MB     | Replication / Sending Servers                                     | Sets the size of WAL files held for standby servers.                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 2147483647   | (null)                                                                         | 0                                     | 0                                                                                                                                                                                                                                  | (null)                                                      |     (null) | f
 wal_level                              | replica                                                                                                                                                                                                                            | (null) | Write-Ahead Log / Settings                                        | Sets the level of information written to the WAL.                                                                                                                                                                                                                                                                                                                                                                                                              | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | enum    | configuration file   | (null)      | (null)       | {minimal,replica,logical}                                                      | replica                               | replica                                                                                                                                                                                                                            | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.backup.conf |          5 | f
 wal_log_hints                          | off                                                                                                                                                                                                                                | (null) | Write-Ahead Log / Settings                                        | Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modification.                                                                                                                                                                                                                                                                                                                                                         | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | postmaster        | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 wal_receiver_create_temp_slot          | off                                                                                                                                                                                                                                | (null) | Replication / Standby Servers                                     | Sets whether a WAL receiver should create a temporary replication slot if no permanent slot is configured.                                                                                                                                                                                                                                                                                                                                                     | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 wal_receiver_status_interval           | 10                                                                                                                                                                                                                                 | s      | Replication / Standby Servers                                     | Sets the maximum interval between WAL receiver status reports to the sending server.                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 2147483      | (null)                                                                         | 10                                    | 10                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 wal_receiver_timeout                   | 60000                                                                                                                                                                                                                              | ms     | Replication / Standby Servers                                     | Sets the maximum wait time to receive data from the sending server.                                                                                                                                                                                                                                                                                                                                                                                            | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 2147483647   | (null)                                                                         | 60000                                 | 60000                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 wal_recycle                            | on                                                                                                                                                                                                                                 | (null) | Write-Ahead Log / Settings                                        | Recycles WAL files by renaming them.                                                                                                                                                                                                                                                                                                                                                                                                                           | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | on                                    | on                                                                                                                                                                                                                                 | (null)                                                      |     (null) | f
 wal_retrieve_retry_interval            | 5000                                                                                                                                                                                                                               | ms     | Replication / Standby Servers                                     | Sets the time to wait before retrying to retrieve WAL after a failed attempt.                                                                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 1           | 2147483647   | (null)                                                                         | 5000                                  | 5000                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 wal_segment_size                       | 16777216                                                                                                                                                                                                                           | B      | Preset Options                                                    | Shows the size of write ahead log segments.                                                                                                                                                                                                                                                                                                                                                                                                                    | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | internal          | integer | override             | 1048576     | 1073741824   | (null)                                                                         | 16777216                              | 16777216                                                                                                                                                                                                                           | (null)                                                      |     (null) | f
 wal_sender_timeout                     | 60000                                                                                                                                                                                                                              | ms     | Replication / Sending Servers                                     | Sets the maximum time to wait for WAL replication.                                                                                                                                                                                                                                                                                                                                                                                                             | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 60000                                 | 60000                                                                                                                                                                                                                              | (null)                                                      |     (null) | f
 wal_skip_threshold                     | 2048                                                                                                                                                                                                                               | kB     | Write-Ahead Log / Settings                                        | Minimum size of new file to fsync instead of writing WAL.                                                                                                                                                                                                                                                                                                                                                                                                      | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | integer | default              | 0           | 2147483647   | (null)                                                                         | 2048                                  | 2048                                                                                                                                                                                                                               | (null)                                                      |     (null) | f
 wal_sync_method                        | fdatasync                                                                                                                                                                                                                          | (null) | Write-Ahead Log / Settings                                        | Selects the method used for forcing WAL updates to disk.                                                                                                                                                                                                                                                                                                                                                                                                       | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | enum    | default              | (null)      | (null)       | {fsync,fdatasync,open_sync,open_datasync}                                      | fdatasync                             | fdatasync                                                                                                                                                                                                                          | (null)                                                      |     (null) | f
 wal_writer_delay                       | 200                                                                                                                                                                                                                                | ms     | Write-Ahead Log / Settings                                        | Time between WAL flushes performed in the WAL writer.                                                                                                                                                                                                                                                                                                                                                                                                          | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 1           | 10000        | (null)                                                                         | 200                                   | 200                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 wal_writer_flush_after                 | 128                                                                                                                                                                                                                                | 8kB    | Write-Ahead Log / Settings                                        | Amount of WAL written out by WAL writer that triggers a flush.                                                                                                                                                                                                                                                                                                                                                                                                 | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | sighup            | integer | default              | 0           | 2147483647   | (null)                                                                         | 128                                   | 128                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
 work_mem                               | 1048576                                                                                                                                                                                                                            | kB     | Resource Usage / Memory                                           | Sets the maximum memory to be used for query workspaces.                                                                                                                                                                                                                                                                                                                                                                                                       | This much memory can be used by each internal sort operation and hash table before switching to temporary disk files.                                                                                                                                                                                                                                                                                                                                                       | user              | integer | configuration file   | 64          | 2147483647   | (null)                                                                         | 4096                                  | 1048576                                                                                                                                                                                                                            | /var/lib/pgsql/14/data/gmpubdev1/postgresql.sbs.memory.conf |          6 | f
 xmlbinary                              | base64                                                                                                                                                                                                                             | (null) | Client Connection Defaults / Statement Behavior                   | Sets how binary values are to be encoded in XML.                                                                                                                                                                                                                                                                                                                                                                                                               | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {base64,hex}                                                                   | base64                                | base64                                                                                                                                                                                                                             | (null)                                                      |     (null) | f
 xmloption                              | content                                                                                                                                                                                                                            | (null) | Client Connection Defaults / Statement Behavior                   | Sets whether XML data in implicit parsing and serialization operations is to be considered as documents or content fragments.                                                                                                                                                                                                                                                                                                                                  | (null)                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | user              | enum    | default              | (null)      | (null)       | {content,document}                                                             | content                               | content                                                                                                                                                                                                                            | (null)                                                      |     (null) | f
 zero_damaged_pages                     | off                                                                                                                                                                                                                                | (null) | Developer Options                                                 | Continues processing past damaged page headers.                                                                                                                                                                                                                                                                                                                                                                                                                | Detection of a damaged page header normally causes PostgreSQL to report an error, aborting the current transaction. Setting zero_damaged_pages to true causes the system to instead report a warning, zero out the damaged page, and continue processing. This behavior will destroy data, namely all the rows on the damaged page.                                                                                                                                         | superuser         | bool    | default              | (null)      | (null)       | (null)                                                                         | off                                   | off                                                                                                                                                                                                                                | (null)                                                      |     (null) | f
(395 rows)


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]

  Powered by Linux