Skip to content

Commit cf0fa79

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 78a1208 commit cf0fa79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎aqo.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ _PG_init(void)
257257
&fs_max_items,
258258
10000,
259259
1, INT_MAX,
260-
PGC_SUSET,
260+
PGC_POSTMASTER,
261261
0,
262262
NULL,
263263
NULL,
@@ -270,7 +270,7 @@ _PG_init(void)
270270
&fss_max_items,
271271
100000,
272272
0, INT_MAX,
273-
PGC_SUSET,
273+
PGC_POSTMASTER,
274274
0,
275275
NULL,
276276
NULL,

0 commit comments

Comments
 (0)