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 parent00dc303 commit023c9cdCopy full SHA for 023c9cd
jsonb_ops.c
@@ -237,6 +237,7 @@ recursiveExtract(char *jqBase, int32 jqPos, uint32 hash, Entries *e,
237
result= (ExtractedNode*)palloc(sizeof(ExtractedNode));
238
extra= (KeyExtra*)palloc0(sizeof(KeyExtra));
239
extra->hash=hash;
240
+extra->lossy=lossy;
241
result->type=eScalar;
242
result->path=path;
243
result->indirect=indirect;
@@ -256,6 +257,7 @@ recursiveExtract(char *jqBase, int32 jqPos, uint32 hash, Entries *e,
256
257
258
259
260
261
262
if (type==jqiContains)
263
result->type=eAnd;