Skip to content

Commit b210613

Browse files
author
Nikita Glukhov
committed
Fix jsonb GUCs
1 parent 1be6c2b commit b210613

File tree

1 file changed

+6
-0
lines changed
  • src/backend/utils/misc

1 file changed

+6
-0
lines changed

src/backend/utils/misc/guc.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2186,6 +2186,8 @@ static struct config_bool ConfigureNamesBool[] =
21862186
{
21872187
{"jsonb_sort_field_values", PGC_USERSET, DEVELOPER_OPTIONS,
21882188
gettext_noop("Use special binary jsonb format for objects when their field values sorted by length."),
2189+
NULL,
2190+
GUC_NOT_IN_SAMPLE
21892191
},
21902192
&jsonb_sort_field_values,
21912193
true,
@@ -2195,6 +2197,8 @@ static struct config_bool ConfigureNamesBool[] =
21952197
{
21962198
{"jsonb_partial_decompression", PGC_USERSET, DEVELOPER_OPTIONS,
21972199
gettext_noop("Use partial pglz decompression for jsonb."),
2200+
NULL,
2201+
GUC_NOT_IN_SAMPLE
21982202
},
21992203
&jsonb_partial_decompression,
22002204
true,
@@ -2204,6 +2208,8 @@ static struct config_bool ConfigureNamesBool[] =
22042208
{
22052209
{"jsonb_partial_detoast", PGC_USERSET, DEVELOPER_OPTIONS,
22062210
gettext_noop("Use partial deTOASTing for jsonb."),
2211+
NULL,
2212+
GUC_NOT_IN_SAMPLE
22072213
},
22082214
&jsonb_partial_detoast,
22092215
true,

0 commit comments

Comments
 (0)