Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitab968a3

Browse files
author
Alexander Korotkov
committed
Increase limits for vacuum_freeze_min_age, vacuum_freeze_table_age,
vacuum_multixact_freeze_min_age and vacuum_multixact_freeze_table_age.
1 parent5d36d6b commitab968a3

File tree

1 file changed

+4
-4
lines changed
  • src/backend/utils/misc

1 file changed

+4
-4
lines changed

‎src/backend/utils/misc/guc.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3033,7 +3033,7 @@ static struct config_int64 ConfigureNamesInt64[] =
30333033
NULL
30343034
},
30353035
&vacuum_freeze_min_age,
3036-
INT64CONST(50000000),INT64CONST(0),INT64CONST(1000000000),
3036+
INT64CONST(50000000),INT64CONST(0),INT64CONST(0x7FFFFFFFFFFFFFFF),
30373037
NULL,NULL,NULL
30383038
},
30393039

@@ -3043,7 +3043,7 @@ static struct config_int64 ConfigureNamesInt64[] =
30433043
NULL
30443044
},
30453045
&vacuum_freeze_table_age,
3046-
INT64CONST(150000000),INT64CONST(0),INT64CONST(2000000000),
3046+
INT64CONST(150000000),INT64CONST(0),INT64CONST(0x7FFFFFFFFFFFFFFF),
30473047
NULL,NULL,NULL
30483048
},
30493049

@@ -3053,7 +3053,7 @@ static struct config_int64 ConfigureNamesInt64[] =
30533053
NULL
30543054
},
30553055
&vacuum_multixact_freeze_min_age,
3056-
INT64CONST(5000000),INT64CONST(0),INT64CONST(1000000000),
3056+
INT64CONST(5000000),INT64CONST(0),INT64CONST(0x7FFFFFFFFFFFFFFF),
30573057
NULL,NULL,NULL
30583058
},
30593059

@@ -3063,7 +3063,7 @@ static struct config_int64 ConfigureNamesInt64[] =
30633063
NULL
30643064
},
30653065
&vacuum_multixact_freeze_table_age,
3066-
INT64CONST(150000000),INT64CONST(0),INT64CONST(2000000000),
3066+
INT64CONST(150000000),INT64CONST(0),INT64CONST(0x7FFFFFFFFFFFFFFF),
30673067
NULL,NULL,NULL
30683068
},
30693069

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp