We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33a263a commit 00d3822Copy full SHA for 00d3822
src/backend/utils/adt/jsonb_util.c
@@ -160,6 +160,9 @@ bool jsonb_sort_field_values = true; /* GUC */
160
bool jsonb_partial_decompression = true; /* GUC */
161
bool jsonb_partial_detoast = true; /* GUC */
162
163
+void **jsonb_iter_cache;
164
+MemoryContext jsonb_iter_cache_mcxt;
165
+
166
JsonValue *
167
JsonValueUnpackBinary(const JsonValue *jbv)
168
{
src/include/utils/jsonb.h
@@ -266,4 +266,7 @@ extern MemoryContext jsonbGetIteratorContext(void);
266
#endif
267
extern void jsonbRegisterIterator(GenericDetoastIterator iter);
268
269
+extern void **jsonb_iter_cache;
270
+extern MemoryContext jsonb_iter_cache_mcxt;
271
272
#endif /* __JSONB_H__ */
0 commit comments