diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 75f9471ff6..ade44b58e8 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -6934,7 +6934,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; log_autovacuum_min_duration (integer) - log_autovacuum_min_duration configuration parameter + log_autovacuum_min_duration + configuration parameter @@ -6993,7 +6994,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; autovacuum_vacuum_threshold (integer) - autovacuum_vacuum_threshold configuration parameter + autovacuum_vacuum_threshold + configuration parameter @@ -7012,7 +7014,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; autovacuum_analyze_threshold (integer) - autovacuum_analyze_threshold configuration parameter + autovacuum_analyze_threshold + configuration parameter @@ -7031,7 +7034,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; autovacuum_vacuum_scale_factor (floating point) - autovacuum_vacuum_scale_factor configuration parameter + autovacuum_vacuum_scale_factor + configuration parameter @@ -7051,7 +7055,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; autovacuum_analyze_scale_factor (floating point) - autovacuum_analyze_scale_factor configuration parameter + autovacuum_analyze_scale_factor + configuration parameter @@ -7071,7 +7076,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; autovacuum_freeze_max_age (integer) - autovacuum_freeze_max_age configuration parameter + autovacuum_freeze_max_age + configuration parameter @@ -7099,7 +7105,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; autovacuum_multixact_freeze_max_age (integer) - autovacuum_multixact_freeze_max_age configuration parameter + autovacuum_multixact_freeze_max_age + configuration parameter @@ -7127,7 +7134,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; autovacuum_vacuum_cost_delay (floating point) - autovacuum_vacuum_cost_delay configuration parameter + autovacuum_vacuum_cost_delay + configuration parameter @@ -7147,7 +7155,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; autovacuum_vacuum_cost_limit (integer) - autovacuum_vacuum_cost_limit configuration parameter + autovacuum_vacuum_cost_limit + configuration parameter @@ -7746,7 +7755,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; vacuum_cleanup_index_scale_factor (floating point) - vacuum_cleanup_index_scale_factor configuration parameter + vacuum_cleanup_index_scale_factor + configuration parameter @@ -7865,7 +7875,8 @@ SET XML OPTION { DOCUMENT | CONTENT }; gin_pending_list_limit (integer) - gin_pending_list_limit configuration parameter + gin_pending_list_limit + configuration parameter diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml index d9d95b20e3..e62ab33905 100644 --- a/doc/src/sgml/ref/create_index.sgml +++ b/doc/src/sgml/ref/create_index.sgml @@ -361,8 +361,12 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] - - fillfactor + + fillfactor + + fillfactor storage parameter + + The fillfactor for an index is a percentage that determines how full @@ -388,8 +392,13 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] - - vacuum_cleanup_index_scale_factor + + vacuum_cleanup_index_scale_factor + + vacuum_cleanup_index_scale_factor + storage parameter + + Per-index value for . @@ -403,8 +412,12 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] - - buffering + + buffering + + buffering storage parameter + + Determines whether the buffering build technique described in @@ -422,8 +435,12 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] - - fastupdate + + fastupdate + + fastupdate storage parameter + + This setting controls usage of the fast update technique described in @@ -446,9 +463,15 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] + - - gin_pending_list_limit + + gin_pending_list_limit + + gin_pending_list_limit + storage parameter + + Custom parameter. @@ -463,8 +486,12 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] - - pages_per_range + + pages_per_range + + pages_per_range storage parameter + + Defines the number of table blocks that make up one block range for @@ -474,8 +501,12 @@ CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] - - autosummarize + + autosummarize + + autosummarize storage parameter + + Defines whether a summarization run is invoked for the previous page diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 37880110e5..77c254862b 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1316,8 +1316,12 @@ WITH ( MODULUS numeric_literal, REM - - fillfactor (integer) + + fillfactor (integer) + + fillfactor storage parameter + + The fillfactor for a table is a percentage between 10 and 100. @@ -1334,8 +1338,12 @@ WITH ( MODULUS numeric_literal, REM - - toast_tuple_target (integer) + + toast_tuple_target (integer) + + toast_tuple_target storage parameter + + The toast_tuple_target specifies the minimum tuple length required before @@ -1355,8 +1363,12 @@ WITH ( MODULUS numeric_literal, REM - - parallel_workers (integer) + + parallel_workers (integer) + + parallel_workers storage parameter + + This sets the number of workers that should be used to assist a parallel @@ -1368,8 +1380,12 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_enabled, toast.autovacuum_enabled (boolean) + + autovacuum_enabled, toast.autovacuum_enabled (boolean) + + autovacuum_enabled storage parameter + + Enables or disables the autovacuum daemon for a particular table. @@ -1389,8 +1405,12 @@ WITH ( MODULUS numeric_literal, REM - - vacuum_index_cleanup (boolean) + + vacuum_index_cleanup (boolean) + + vacuum_index_cleanup storage parameter + + Enables or disables index cleanup when VACUUM is @@ -1404,8 +1424,12 @@ WITH ( MODULUS numeric_literal, REM - - vacuum_truncate, toast.vacuum_truncate (boolean) + + vacuum_truncate, toast.vacuum_truncate (boolean) + + vacuum_truncate storage parameter + + Enables or disables vacuum to try to truncate off any empty pages @@ -1419,8 +1443,13 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_vacuum_threshold, toast.autovacuum_vacuum_threshold (integer) + + autovacuum_vacuum_threshold, toast.autovacuum_vacuum_threshold (integer) + + autovacuum_vacuum_threshold + storage parameter + + Per-table value for @@ -1429,8 +1458,13 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_vacuum_scale_factor, toast.autovacuum_vacuum_scale_factor (float4) + + autovacuum_vacuum_scale_factor, toast.autovacuum_vacuum_scale_factor (float4) + + autovacuum_vacuum_scale_factor + storage parameter + + Per-table value for @@ -1439,8 +1473,13 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_analyze_threshold (integer) + + autovacuum_analyze_threshold (integer) + + autovacuum_analyze_threshold + storage parameter + + Per-table value for @@ -1449,8 +1488,13 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_analyze_scale_factor (float4) + + autovacuum_analyze_scale_factor (float4) + + autovacuum_analyze_scale_factor + storage parameter + + Per-table value for @@ -1459,8 +1503,13 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_vacuum_cost_delay, toast.autovacuum_vacuum_cost_delay (floating point) + + autovacuum_vacuum_cost_delay, toast.autovacuum_vacuum_cost_delay (floating point) + + autovacuum_vacuum_cost_delay + storage parameter + + Per-table value for @@ -1469,8 +1518,13 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_vacuum_cost_limit, toast.autovacuum_vacuum_cost_limit (integer) + + autovacuum_vacuum_cost_limit, toast.autovacuum_vacuum_cost_limit (integer) + + autovacuum_vacuum_cost_limit + storage parameter + + Per-table value for @@ -1479,8 +1533,12 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_freeze_min_age, toast.autovacuum_freeze_min_age (integer) + + autovacuum_freeze_min_age, toast.autovacuum_freeze_min_age (integer) + + autovacuum_freeze_min_age storage parameter + + Per-table value for @@ -1492,8 +1550,13 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_freeze_max_age, toast.autovacuum_freeze_max_age (integer) + + autovacuum_freeze_max_age, toast.autovacuum_freeze_max_age (integer) + + autovacuum_freeze_max_age + storage parameter + + Per-table value for @@ -1504,8 +1567,12 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_freeze_table_age, toast.autovacuum_freeze_table_age (integer) + + autovacuum_freeze_table_age, toast.autovacuum_freeze_table_age (integer) + + autovacuum_freeze_table_age storage parameter + + Per-table value for @@ -1514,8 +1581,12 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_multixact_freeze_min_age, toast.autovacuum_multixact_freeze_min_age (integer) + + autovacuum_multixact_freeze_min_age, toast.autovacuum_multixact_freeze_min_age (integer) + + autovacuum_multixact_freeze_min_age storage parameter + + Per-table value for @@ -1528,8 +1599,13 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_multixact_freeze_max_age, toast.autovacuum_multixact_freeze_max_age (integer) + + autovacuum_multixact_freeze_max_age, toast.autovacuum_multixact_freeze_max_age (integer) + + autovacuum_multixact_freeze_max_age + storage parameter + + Per-table value @@ -1542,8 +1618,12 @@ WITH ( MODULUS numeric_literal, REM - - autovacuum_multixact_freeze_table_age, toast.autovacuum_multixact_freeze_table_age (integer) + + autovacuum_multixact_freeze_table_age, toast.autovacuum_multixact_freeze_table_age (integer) + + autovacuum_multixact_freeze_table_age storage parameter + + Per-table value @@ -1552,8 +1632,13 @@ WITH ( MODULUS numeric_literal, REM - - log_autovacuum_min_duration, toast.log_autovacuum_min_duration (integer) + + log_autovacuum_min_duration, toast.log_autovacuum_min_duration (integer) + + log_autovacuum_min_duration + storage parameter + + Per-table value for @@ -1562,8 +1647,12 @@ WITH ( MODULUS numeric_literal, REM - - user_catalog_table (boolean) + + user_catalog_table (boolean) + + user_catalog_table storage parameter + + Declare the table as an additional catalog table for purposes of