@@ -3110,7 +3110,7 @@ include_dir 'conf.d'
3110
3110
</varlistentry>
3111
3111
3112
3112
<varlistentry id="guc-vacuum-defer-cleanup-age" xreflabel="vacuum_defer_cleanup_age">
3113
- <term><varname>vacuum_defer_cleanup_age</varname> (<type>integer</type>)
3113
+ <term><varname>vacuum_defer_cleanup_age</varname> (<type>integer 64 </type>)
3114
3114
<indexterm>
3115
3115
<primary><varname>vacuum_defer_cleanup_age</> configuration parameter</primary>
3116
3116
</indexterm>
@@ -5813,7 +5813,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
5813
5813
</varlistentry>
5814
5814
5815
5815
<varlistentry id="guc-autovacuum-freeze-max-age" xreflabel="autovacuum_freeze_max_age">
5816
- <term><varname>autovacuum_freeze_max_age</varname> (<type>integer</type>)
5816
+ <term><varname>autovacuum_freeze_max_age</varname> (<type>integer 64 </type>)
5817
5817
<indexterm>
5818
5818
<primary><varname>autovacuum_freeze_max_age</> configuration parameter</primary>
5819
5819
</indexterm>
@@ -5838,7 +5838,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
5838
5838
</varlistentry>
5839
5839
5840
5840
<varlistentry id="guc-autovacuum-multixact-freeze-max-age" xreflabel="autovacuum_multixact_freeze_max_age">
5841
- <term><varname>autovacuum_multixact_freeze_max_age</varname> (<type>integer</type>)
5841
+ <term><varname>autovacuum_multixact_freeze_max_age</varname> (<type>integer 64 </type>)
5842
5842
<indexterm>
5843
5843
<primary><varname>autovacuum_multixact_freeze_max_age</varname> configuration parameter</primary>
5844
5844
</indexterm>
@@ -6338,7 +6338,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
6338
6338
</varlistentry>
6339
6339
6340
6340
<varlistentry id="guc-vacuum-freeze-table-age" xreflabel="vacuum_freeze_table_age">
6341
- <term><varname>vacuum_freeze_table_age</varname> (<type>integer</type>)
6341
+ <term><varname>vacuum_freeze_table_age</varname> (<type>integer 64 </type>)
6342
6342
<indexterm>
6343
6343
<primary><varname>vacuum_freeze_table_age</> configuration parameter</primary>
6344
6344
</indexterm>
@@ -6351,7 +6351,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
6351
6351
a regular <command>VACUUM</> in that it visits every page that might
6352
6352
contain unfrozen XIDs or MXIDs, not just those that might contain dead
6353
6353
tuples. The default is 150 million transactions. Although users can
6354
- set this value anywhere from zero to two billions , <command>VACUUM</>
6354
+ set this value anywhere from zero to 2^63 - 1 , <command>VACUUM</>
6355
6355
will silently limit the effective value to 95% of
6356
6356
<xref linkend="guc-autovacuum-freeze-max-age">, so that a
6357
6357
periodical manual <command>VACUUM</> has a chance to run before an
@@ -6363,7 +6363,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
6363
6363
</varlistentry>
6364
6364
6365
6365
<varlistentry id="guc-vacuum-freeze-min-age" xreflabel="vacuum_freeze_min_age">
6366
- <term><varname>vacuum_freeze_min_age</varname> (<type>integer</type>)
6366
+ <term><varname>vacuum_freeze_min_age</varname> (<type>integer 64 </type>)
6367
6367
<indexterm>
6368
6368
<primary><varname>vacuum_freeze_min_age</> configuration parameter</primary>
6369
6369
</indexterm>
@@ -6374,7 +6374,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
6374
6374
should use to decide whether to freeze row versions
6375
6375
while scanning a table.
6376
6376
The default is 50 million transactions. Although
6377
- users can set this value anywhere from zero to one billion ,
6377
+ users can set this value anywhere from zero to 2^63 - 1 ,
6378
6378
<command>VACUUM</> will silently limit the effective value to half
6379
6379
the value of <xref linkend="guc-autovacuum-freeze-max-age">, so
6380
6380
that there is not an unreasonably short time between forced
@@ -6385,7 +6385,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
6385
6385
</varlistentry>
6386
6386
6387
6387
<varlistentry id="guc-vacuum-multixact-freeze-table-age" xreflabel="vacuum_multixact_freeze_table_age">
6388
- <term><varname>vacuum_multixact_freeze_table_age</varname> (<type>integer</type>)
6388
+ <term><varname>vacuum_multixact_freeze_table_age</varname> (<type>integer 64 </type>)
6389
6389
<indexterm>
6390
6390
<primary><varname>vacuum_multixact_freeze_table_age</> configuration parameter</primary>
6391
6391
</indexterm>
@@ -6398,7 +6398,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
6398
6398
a regular <command>VACUUM</> in that it visits every page that might
6399
6399
contain unfrozen XIDs or MXIDs, not just those that might contain dead
6400
6400
tuples. The default is 150 million multixacts.
6401
- Although users can set this value anywhere from zero to two billions ,
6401
+ Although users can set this value anywhere from zero to 2^63 - 1 ,
6402
6402
<command>VACUUM</> will silently limit the effective value to 95% of
6403
6403
<xref linkend="guc-autovacuum-multixact-freeze-max-age">, so that a
6404
6404
periodical manual <command>VACUUM</> has a chance to run before an
@@ -6410,7 +6410,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
6410
6410
</varlistentry>
6411
6411
6412
6412
<varlistentry id="guc-vacuum-multixact-freeze-min-age" xreflabel="vacuum_multixact_freeze_min_age">
6413
- <term><varname>vacuum_multixact_freeze_min_age</varname> (<type>integer</type>)
6413
+ <term><varname>vacuum_multixact_freeze_min_age</varname> (<type>integer 64 </type>)
6414
6414
<indexterm>
6415
6415
<primary><varname>vacuum_multixact_freeze_min_age</> configuration parameter</primary>
6416
6416
</indexterm>
@@ -6421,7 +6421,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
6421
6421
should use to decide whether to replace multixact IDs with a newer
6422
6422
transaction ID or multixact ID while scanning a table. The default
6423
6423
is 5 million multixacts.
6424
- Although users can set this value anywhere from zero to one billion ,
6424
+ Although users can set this value anywhere from zero to 2^63 - 1 ,
6425
6425
<command>VACUUM</> will silently limit the effective value to half
6426
6426
the value of <xref linkend="guc-autovacuum-multixact-freeze-max-age">,
6427
6427
so that there is not an unreasonably short time between forced
0 commit comments