Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c7fc679

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 afdc59e commit c7fc679

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
@@ -248,7 +248,7 @@ _PG_init(void)
248248
&fs_max_items,
249249
10000,
250250
1, INT_MAX,
251-
PGC_SUSET,
251+
PGC_POSTMASTER,
252252
0,
253253
NULL,
254254
NULL,
@@ -261,7 +261,7 @@ _PG_init(void)
261261
&fss_max_items,
262262
100000,
263263
0, INT_MAX,
264-
PGC_SUSET,
264+
PGC_POSTMASTER,
265265
0,
266266
NULL,
267267
NULL,

0 commit comments

Comments
 (0)