8000 Fix aqo.fs_max_items, add.fss_max_items. · postgrespro/aqo@2b13279 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 2b13279

Browse files
author
Alena Rybakina
committed
Fix aqo.fs_max_items, add.fss_max_items.
Set GucContext as PGC_POSTMASTER to allow values to be changed only before the instance is started.
1 parent 2db27e1 commit 2b13279

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aqo.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ _PG_init(void)
245245
&fs_max_items,
246246
10000,
247247
1, INT_MAX,
248-
PGC_SUSET,
248+
PGC_POSTMASTER,
249249
0,
250250
NULL,
251251
NULL,
@@ -258,7 +258,7 @@ _PG_init(void)
258258
&fss_max_items,
259259
100000,
260260
0, INT_MAX,
261-
PGC_SUSET,
261+
PGC_POSTMASTER,
262262
0,
263263
NULL,
264264
NULL,

0 commit comments

Comments
 (0)
0