We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent1be6c2b commitb210613Copy full SHA for b210613
src/backend/utils/misc/guc.c
@@ -2186,6 +2186,8 @@ static struct config_bool ConfigureNamesBool[] =
2186
{
2187
{"jsonb_sort_field_values",PGC_USERSET,DEVELOPER_OPTIONS,
2188
gettext_noop("Use special binary jsonb format for objects when their field values sorted by length."),
2189
+NULL,
2190
+GUC_NOT_IN_SAMPLE
2191
},
2192
&jsonb_sort_field_values,
2193
true,
@@ -2195,6 +2197,8 @@ static struct config_bool ConfigureNamesBool[] =
2195
2197
2196
2198
{"jsonb_partial_decompression",PGC_USERSET,DEVELOPER_OPTIONS,
2199
gettext_noop("Use partial pglz decompression for jsonb."),
2200
2201
2202
2203
&jsonb_partial_decompression,
2204
@@ -2204,6 +2208,8 @@ static struct config_bool ConfigureNamesBool[] =
2208
2205
2209
{"jsonb_partial_detoast",PGC_USERSET,DEVELOPER_OPTIONS,
2206
2210
gettext_noop("Use partial deTOASTing for jsonb."),
2211
2212
2207
2213
2214
&jsonb_partial_detoast,
2215