PostgreSQL Source Code git master
jsonb_gin.c
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * jsonb_gin.c
4 * GIN support functions for jsonb
5 *
6 * Copyright (c) 2014-2025, PostgreSQL Global Development Group
7 *
8 * We provide two opclasses for jsonb indexing: jsonb_ops and jsonb_path_ops.
9 * For their description see json.sgml and comments in jsonb.h.
10 *
11 * The operators support, among the others, "jsonb @? jsonpath" and
12 * "jsonb @@ jsonpath". Expressions containing these operators are easily
13 * expressed through each other.
14 *
15 * jb @? 'path' <=> jb @@ 'EXISTS(path)'
16 * jb @@ 'expr' <=> jb @? '$ ? (expr)'
17 *
18 * Thus, we're going to consider only @@ operator, while regarding @? operator
19 * the same is true for jb @@ 'EXISTS(path)'.
20 *
21 * Result of jsonpath query extraction is a tree, which leaf nodes are index
22 * entries and non-leaf nodes are AND/OR logical expressions. Basically we
23 * extract following statements out of jsonpath:
24 *
25 * 1) "accessors_chain = const",
26 * 2) "EXISTS(accessors_chain)".
27 *
28 * Accessors chain may consist of .key, [*] and [index] accessors. jsonb_ops
29 * additionally supports .* and .**.
30 *
31 * For now, both jsonb_ops and jsonb_path_ops supports only statements of
32 * the 1st find. jsonb_ops might also support statements of the 2nd kind,
33 * but given we have no statistics keys extracted from accessors chain
34 * are likely non-selective. Therefore, we choose to not confuse optimizer
35 * and skip statements of the 2nd kind altogether. In future versions that
36 * might be changed.
37 *
38 * In jsonb_ops statement of the 1st kind is split into expression of AND'ed
39 * keys and const. Sometimes const might be interpreted as both value or key
40 * in jsonb_ops. Then statement of 1st kind is decomposed into the expression
41 * below.
42 *
43 * key1 AND key2 AND ... AND keyN AND (const_as_value OR const_as_key)
44 *
45 * jsonb_path_ops transforms each statement of the 1st kind into single hash
46 * entry below.
47 *
48 * HASH(key1, key2, ... , keyN, const)
49 *
50 * Despite statements of the 2nd kind are not supported by both jsonb_ops and
51 * jsonb_path_ops, EXISTS(path) expressions might be still supported,
52 * when statements of 1st kind could be extracted out of their filters.
53 *
54 * IDENTIFICATION
55 * src/backend/utils/adt/jsonb_gin.c
56 *
57 *-------------------------------------------------------------------------
58 */
59
60#include "postgres.h"
61
62#include "access/gin.h"
63#include "access/stratnum.h"
65#include "catalog/pg_type.h"
66#include "common/hashfn.h"
67#include "miscadmin.h"
68#include "utils/fmgrprotos.h"
69#include "utils/jsonb.h"
70#include "utils/jsonpath.h"
71#include "utils/varlena.h"
72
73typedef struct PathHashStack
74{
78
79/* Buffer for GIN entries */
80typedef struct GinEntries
81{
83 int count;
86
88{
93
95
96/* Node in jsonpath expression tree */
98{
100 union
101 {
102 int nargs; /* valid for OR and AND nodes */
103 int entryIndex; /* index in GinEntries array, valid for ENTRY
104 * nodes after entries output */
105 Datum entryDatum; /* path hash or key name/scalar, valid for
106 * ENTRY nodes before entries output */
108 JsonPathGinNode *args[FLEXIBLE_ARRAY_MEMBER]; /* valid for OR and AND
109 * nodes */
110};
111
112/*
113 * jsonb_ops entry extracted from jsonpath item. Corresponding path item
114 * may be: '.key', '.*', '.**', '[index]' or '[*]'.
115 * Entry type is stored in 'type' field.
116 */
118{
120 Datum keyName; /* key name (for '.key' path item) or NULL */
121 JsonPathItemType type; /* type of jsonpath item */
123
124/* GIN representation of the extracted json path */
125typedef union JsonPathGinPath
126{
127 JsonPathGinPathItem *items; /* list of path items (jsonb_ops) */
128 uint32 hash; /* hash of the path (jsonb_path_ops) */
130
132
133/* Callback, which stores information about path item into JsonPathGinPath */
135 JsonPathItem *jsp);
136
137/*
138 * Callback, which extracts set of nodes from statement of 1st kind
139 * (scalar != NULL) or statement of 2nd kind (scalar == NULL).
140 */
141typedef List *(*JsonPathGinExtractNodesFunc) (JsonPathGinContext *cxt,
142 JsonPathGinPath path,
143 JsonbValue *scalar,
144 List *nodes);
145
146/* Context for jsonpath entries extraction */
148{
151 bool lax;
152};
153
154static Datum make_text_key(char flag, const char *str, int len);
155static Datum make_scalar_key(const JsonbValue *scalarVal, bool is_key);
156
158 JsonPathGinPath path, JsonPathItem *jsp, bool not);
159
160
161/* Initialize GinEntries struct */
162static void
163init_gin_entries(GinEntries *entries, int preallocated)
164{
165 entries->allocated = preallocated;
166 entries->buf = preallocated ? palloc(sizeof(Datum) * preallocated) : NULL;
167 entries->count = 0;
168}
169
170/* Add new entry to GinEntries */
171static int
173{
174 int id = entries->count;
175
176 if (entries->count >= entries->allocated)
177 {
178 if (entries->allocated)
179 {
180 entries->allocated *= 2;
181 entries->buf = repalloc(entries->buf,
182 sizeof(Datum) * entries->allocated);
183 }
184 else
185 {
186 entries->allocated = 8;
187 entries->buf = palloc(sizeof(Datum) * entries->allocated);
188 }
189 }
190
191 entries->buf[entries->count++] = entry;
192
193 return id;
194}
195
196/*
197 *
198 * jsonb_ops GIN opclass support functions
199 *
200 */
201
202Datum
204{
205 text *arg1 = PG_GETARG_TEXT_PP(0);
206 text *arg2 = PG_GETARG_TEXT_PP(1);
207 int32 result;
208 char *a1p,
209 *a2p;
210 int len1,
211 len2;
212
213 a1p = VARDATA_ANY(arg1);
214 a2p = VARDATA_ANY(arg2);
215
216 len1 = VARSIZE_ANY_EXHDR(arg1);
217 len2 = VARSIZE_ANY_EXHDR(arg2);
218
219 /* Compare text as bttextcmp does, but always using C collation */
220 result = varstr_cmp(a1p, len1, a2p, len2, C_COLLATION_OID);
221
222 PG_FREE_IF_COPY(arg1, 0);
223 PG_FREE_IF_COPY(arg2, 1);
224
225 PG_RETURN_INT32(result);
226}
227
228Datum
230{
231 Jsonb *jb = (Jsonb *) PG_GETARG_JSONB_P(0);
232 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
233 int total = JB_ROOT_COUNT(jb);
234 JsonbIterator *it;
235 JsonbValue v;
237 GinEntries entries;
238
239 /* If the root level is empty, we certainly have no keys */
240 if (total == 0)
241 {
242 *nentries = 0;
243 PG_RETURN_POINTER(NULL);
244 }
245
246 /* Otherwise, use 2 * root count as initial estimate of result size */
247 init_gin_entries(&entries, 2 * total);
248
249 it = JsonbIteratorInit(&jb->root);
250
251 while ((r = JsonbIteratorNext(&it, &v, false)) != WJB_DONE)
252 {
253 switch (r)
254 {
255 case WJB_KEY:
256 add_gin_entry(&entries, make_scalar_key(&v, true));
257 break;
258 case WJB_ELEM:
259 /* Pretend string array elements are keys, see jsonb.h */
260 add_gin_entry(&entries, make_scalar_key(&v, v.type == jbvString));
261 break;
262 case WJB_VALUE:
263 add_gin_entry(&entries, make_scalar_key(&v, false));
264 break;
265 default:
266 /* we can ignore structural items */
267 break;
268 }
269 }
270
271 *nentries = entries.count;
272
273 PG_RETURN_POINTER(entries.buf);
274}
275
276/* Append JsonPathGinPathItem to JsonPathGinPath (jsonb_ops) */
277static bool
279{
280 JsonPathGinPathItem *pentry;
281 Datum keyName;
282
283 switch (jsp->type)
284 {
285 case jpiRoot:
286 path->items = NULL; /* reset path */
287 return true;
288
289 case jpiKey:
290 {
291 int len;
292 char *key = jspGetString(jsp, &len);
293
294 keyName = make_text_key(JGINFLAG_KEY, key, len);
295 break;
296 }
297
298 case jpiAny:
299 case jpiAnyKey:
300 case jpiAnyArray:
301 case jpiIndexArray:
302 keyName = PointerGetDatum(NULL);
303 break;
304
305 default:
306 /* other path items like item methods are not supported */
307 return false;
308 }
309
310 pentry = palloc(sizeof(*pentry));
311
312 pentry->type = jsp->type;
313 pentry->keyName = keyName;
314 pentry->parent = path->items;
315
316 path->items = pentry;
317
318 return true;
319}
320
321/* Combine existing path hash with next key hash (jsonb_path_ops) */
322static bool
324{
325 switch (jsp->type)
326 {
327 case jpiRoot:
328 path->hash = 0; /* reset path hash */
329 return true;
330
331 case jpiKey:
332 {
333 JsonbValue jbv;
334
335 jbv.type = jbvString;
336 jbv.val.string.val = jspGetString(jsp, &jbv.val.string.len);
337
338 JsonbHashScalarValue(&jbv, &path->hash);
339 return true;
340 }
341
342 case jpiIndexArray:
343 case jpiAnyArray:
344 return true; /* path hash is unchanged */
345
346 default:
347 /* other items (wildcard paths, item methods) are not supported */
348 return false;
349 }
350}
351
352static JsonPathGinNode *
354{
355 JsonPathGinNode *node = palloc(offsetof(JsonPathGinNode, args));
356
357 node->type = JSP_GIN_ENTRY;
358 node->val.entryDatum = entry;
359
360 return node;
361}
362
363static JsonPathGinNode *
365{
366 return make_jsp_entry_node(make_scalar_key(scalar, iskey));
367}
368
369static JsonPathGinNode *
371{
372 JsonPathGinNode *node = palloc(offsetof(JsonPathGinNode, args) +
373 sizeof(node->args[0]) * nargs);
374
375 node->type = type;
376 node->val.nargs = nargs;
377
378 return node;
379}
380
381static JsonPathGinNode *
383{
385 ListCell *lc;
386 int i = 0;
387
388 foreach(lc, args)
389 node->args[i++] = lfirst(lc);
390
391 return node;
392}
393
394static JsonPathGinNode *
396 JsonPathGinNode *arg1, JsonPathGinNode *arg2)
397{
399
400 node->args[0] = arg1;
401 node->args[1] = arg2;
402
403 return node;
404}
405
406/* Append a list of nodes from the jsonpath (jsonb_ops). */
407static List *
409 JsonbValue *scalar, List *nodes)
410{
411 JsonPathGinPathItem *pentry;
412
413 if (scalar)
414 {
415 JsonPathGinNode *node;
416
417 /*
418 * Append path entry nodes only if scalar is provided. See header
419 * comment for details.
420 */
421 for (pentry = path.items; pentry; pentry = pentry->parent)
422 {
423 if (pentry->type == jpiKey) /* only keys are indexed */
424 nodes = lappend(nodes, make_jsp_entry_node(pentry->keyName));
425 }
426
427 /* Append scalar node for equality queries. */
428 if (scalar->type == jbvString)
429 {
430 JsonPathGinPathItem *last = path.items;
431 GinTernaryValue key_entry;
432
433 /*
434 * Assuming that jsonb_ops interprets string array elements as
435 * keys, we may extract key or non-key entry or even both. In the
436 * latter case we create OR-node. It is possible in lax mode
437 * where arrays are automatically unwrapped, or in strict mode for
438 * jpiAny items.
439 */
440
441 if (cxt->lax)
442 key_entry = GIN_MAYBE;
443 else if (!last) /* root ($) */
444 key_entry = GIN_FALSE;
445 else if (last->type == jpiAnyArray || last->type == jpiIndexArray)
446 key_entry = GIN_TRUE;
447 else if (last->type == jpiAny)
448 key_entry = GIN_MAYBE;
449 else
450 key_entry = GIN_FALSE;
451
452 if (key_entry == GIN_MAYBE)
453 {
455 JsonPathGinNode *n2 = make_jsp_entry_node_scalar(scalar, false);
456
458 }
459 else
460 {
461 node = make_jsp_entry_node_scalar(scalar,
462 key_entry == GIN_TRUE);
463 }
464 }
465 else
466 {
467 node = make_jsp_entry_node_scalar(scalar, false);
468 }
469
470 nodes = lappend(nodes, node);
471 }
472
473 return nodes;
474}
475
476/* Append a list of nodes from the jsonpath (jsonb_path_ops). */
477static List *
479 JsonbValue *scalar, List *nodes)
480{
481 if (scalar)
482 {
483 /* append path hash node for equality queries */
484 uint32 hash = path.hash;
485
486 JsonbHashScalarValue(scalar, &hash);
487
488 return lappend(nodes,
490 }
491 else
492 {
493 /* jsonb_path_ops doesn't support EXISTS queries => nothing to append */
494 return nodes;
495 }
496}
497
498/*
499 * Extract a list of expression nodes that need to be AND-ed by the caller.
500 * Extracted expression is 'path == scalar' if 'scalar' is non-NULL, and
501 * 'EXISTS(path)' otherwise.
502 */
503static List *
505 JsonPathItem *jsp, JsonbValue *scalar)
506{
508 List *nodes = NIL;
509
510 for (;;)
511 {
512 switch (jsp->type)
513 {
514 case jpiCurrent:
515 break;
516
517 case jpiFilter:
518 {
520 JsonPathGinNode *filter;
521
522 jspGetArg(jsp, &arg);
523
524 filter = extract_jsp_bool_expr(cxt, path, &arg, false);
525
526 if (filter)
527 nodes = lappend(nodes, filter);
528
529 break;
530 }
531
532 default:
533 if (!cxt->add_path_item(&path, jsp))
534
535 /*
536 * Path is not supported by the index opclass, return only
537 * the extracted filter nodes.
538 */
539 return nodes;
540 break;
541 }
542
543 if (!jspGetNext(jsp, &next))
544 break;
545
546 jsp = &next;
547 }
548
549 /*
550 * Append nodes from the path expression itself to the already extracted
551 * list of filter nodes.
552 */
553 return cxt->extract_nodes(cxt, path, scalar, nodes);
554}
555
556/*
557 * Extract an expression node from one of following jsonpath path expressions:
558 * EXISTS(jsp) (when 'scalar' is NULL)
559 * jsp == scalar (when 'scalar' is not NULL).
560 *
561 * The current path (@) is passed in 'path'.
562 */
563static JsonPathGinNode *
565 JsonPathItem *jsp, JsonbValue *scalar)
566{
567 /* extract a list of nodes to be AND-ed */
568 List *nodes = extract_jsp_path_expr_nodes(cxt, path, jsp, scalar);
569
570 if (nodes == NIL)
571 /* no nodes were extracted => full scan is needed for this path */
572 return NULL;
573
574 if (list_length(nodes) == 1)
575 return linitial(nodes); /* avoid extra AND-node */
576
577 /* construct AND-node for path with filters */
579}
580
581/* Recursively extract nodes from the boolean jsonpath expression. */
582static JsonPathGinNode *
584 JsonPathItem *jsp, bool not)
585{
587
588 switch (jsp->type)
589 {
590 case jpiAnd: /* expr && expr */
591 case jpiOr: /* expr || expr */
592 {
594 JsonPathGinNode *larg;
595 JsonPathGinNode *rarg;
597
598 jspGetLeftArg(jsp, &arg);
599 larg = extract_jsp_bool_expr(cxt, path, &arg, not);
600
601 jspGetRightArg(jsp, &arg);
602 rarg = extract_jsp_bool_expr(cxt, path, &arg, not);
603
604 if (!larg || !rarg)
605 {
606 if (jsp->type == jpiOr)
607 return NULL;
608
609 return larg ? larg : rarg;
610 }
611
612 type = not ^ (jsp->type == jpiAnd) ? JSP_GIN_AND : JSP_GIN_OR;
613
614 return make_jsp_expr_node_binary(type, larg, rarg);
615 }
616
617 case jpiNot: /* !expr */
618 {
620
621 jspGetArg(jsp, &arg);
622
623 /* extract child expression inverting 'not' flag */
624 return extract_jsp_bool_expr(cxt, path, &arg, !not);
625 }
626
627 case jpiExists: /* EXISTS(path) */
628 {
630
631 if (not)
632 return NULL; /* NOT EXISTS is not supported */
633
634 jspGetArg(jsp, &arg);
635
636 return extract_jsp_path_expr(cxt, path, &arg, NULL);
637 }
638
639 case jpiNotEqual:
640
641 /*
642 * 'not' == true case is not supported here because '!(path !=
643 * scalar)' is not equivalent to 'path == scalar' in the general
644 * case because of sequence comparison semantics: 'path == scalar'
645 * === 'EXISTS (path, @ == scalar)', '!(path != scalar)' ===
646 * 'FOR_ALL(path, @ == scalar)'. So, we should translate '!(path
647 * != scalar)' into GIN query 'path == scalar || EMPTY(path)', but
648 * 'EMPTY(path)' queries are not supported by the both jsonb
649 * opclasses. However in strict mode we could omit 'EMPTY(path)'
650 * part if the path can return exactly one item (it does not
651 * contain wildcard accessors or item methods like .keyvalue()
652 * etc.).
653 */
654 return NULL;
655
656 case jpiEqual: /* path == scalar */
657 {
658 JsonPathItem left_item;
659 JsonPathItem right_item;
660 JsonPathItem *path_item;
661 JsonPathItem *scalar_item;
662 JsonbValue scalar;
663
664 if (not)
665 return NULL;
666
667 jspGetLeftArg(jsp, &left_item);
668 jspGetRightArg(jsp, &right_item);
669
670 if (jspIsScalar(left_item.type))
671 {
672 scalar_item = &left_item;
673 path_item = &right_item;
674 }
675 else if (jspIsScalar(right_item.type))
676 {
677 scalar_item = &right_item;
678 path_item = &left_item;
679 }
680 else
681 return NULL; /* at least one operand should be a scalar */
682
683 switch (scalar_item->type)
684 {
685 case jpiNull:
686 scalar.type = jbvNull;
687 break;
688 case jpiBool:
689 scalar.type = jbvBool;
690 scalar.val.boolean = !!*scalar_item->content.value.data;
691 break;
692 case jpiNumeric:
693 scalar.type = jbvNumeric;
694 scalar.val.numeric =
695 (Numeric) scalar_item->content.value.data;
696 break;
697 case jpiString:
698 scalar.type = jbvString;
699 scalar.val.string.val = scalar_item->content.value.data;
700 scalar.val.string.len =
701 scalar_item->content.value.datalen;
702 break;
703 default:
704 elog(ERROR, "invalid scalar jsonpath item type: %d",
705 scalar_item->type);
706 return NULL;
707 }
708
709 return extract_jsp_path_expr(cxt, path, path_item, &scalar);
710 }
711
712 default:
713 return NULL; /* not a boolean expression */
714 }
715}
716
717/* Recursively emit all GIN entries found in the node tree */
718static void
720{
722
723 switch (node->type)
724 {
725 case JSP_GIN_ENTRY:
726 /* replace datum with its index in the array */
727 node->val.entryIndex = add_gin_entry(entries, node->val.entryDatum);
728 break;
729
730 case JSP_GIN_OR:
731 case JSP_GIN_AND:
732 {
733 int i;
734
735 for (i = 0; i < node->val.nargs; i++)
736 emit_jsp_gin_entries(node->args[i], entries);
737
738 break;
739 }
740 }
741}
742
743/*
744 * Recursively extract GIN entries from jsonpath query.
745 * Root expression node is put into (*extra_data)[0].
746 */
747static Datum *
749 int32 *nentries, Pointer **extra_data)
750{
753 JsonPathGinNode *node;
754 JsonPathGinPath path = {0};
755 GinEntries entries = {0};
756
757 cxt.lax = (jp->header & JSONPATH_LAX) != 0;
758
759 if (pathOps)
760 {
763 }
764 else
765 {
768 }
769
770 jspInit(&root, jp);
771
773 ? extract_jsp_path_expr(&cxt, path, &root, NULL)
774 : extract_jsp_bool_expr(&cxt, path, &root, false);
775
776 if (!node)
777 {
778 *nentries = 0;
779 return NULL;
780 }
781
782 emit_jsp_gin_entries(node, &entries);
783
784 *nentries = entries.count;
785 if (!*nentries)
786 return NULL;
787
788 *extra_data = palloc0(sizeof(**extra_data) * entries.count);
789 **extra_data = (Pointer) node;
790
791 return entries.buf;
792}
793
794/*
795 * Recursively execute jsonpath expression.
796 * 'check' is a bool[] or a GinTernaryValue[] depending on 'ternary' flag.
797 */
798static GinTernaryValue
799execute_jsp_gin_node(JsonPathGinNode *node, void *check, bool ternary)
800{
801 GinTernaryValue res;
803 int i;
804
805 switch (node->type)
806 {
807 case JSP_GIN_AND:
808 res = GIN_TRUE;
809 for (i = 0; i < node->val.nargs; i++)
810 {
811 v = execute_jsp_gin_node(node->args[i], check, ternary);
812 if (v == GIN_FALSE)
813 return GIN_FALSE;
814 else if (v == GIN_MAYBE)
815 res = GIN_MAYBE;
816 }
817 return res;
818
819 case JSP_GIN_OR:
820 res = GIN_FALSE;
821 for (i = 0; i < node->val.nargs; i++)
822 {
823 v = execute_jsp_gin_node(node->args[i], check, ternary);
824 if (v == GIN_TRUE)
825 return GIN_TRUE;
826 else if (v == GIN_MAYBE)
827 res = GIN_MAYBE;
828 }
829 return res;
830
831 case JSP_GIN_ENTRY:
832 {
833 int index = node->val.entryIndex;
834
835 if (ternary)
836 return ((GinTernaryValue *) check)[index];
837 else
838 return ((bool *) check)[index] ? GIN_TRUE : GIN_FALSE;
839 }
840
841 default:
842 elog(ERROR, "invalid jsonpath gin node type: %d", node->type);
843 return GIN_FALSE; /* keep compiler quiet */
844 }
845}
846
847Datum
849{
850 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
851 StrategyNumber strategy = PG_GETARG_UINT16(2);
852 int32 *searchMode = (int32 *) PG_GETARG_POINTER(6);
853 Datum *entries;
854
855 if (strategy == JsonbContainsStrategyNumber)
856 {
857 /* Query is a jsonb, so just apply gin_extract_jsonb... */
858 entries = (Datum *)
861 PointerGetDatum(nentries)));
862 /* ...although "contains {}" requires a full index scan */
863 if (*nentries == 0)
864 *searchMode = GIN_SEARCH_MODE_ALL;
865 }
866 else if (strategy == JsonbExistsStrategyNumber)
867 {
868 /* Query is a text string, which we treat as a key */
869 text *query = PG_GETARG_TEXT_PP(0);
870
871 *nentries = 1;
872 entries = (Datum *) palloc(sizeof(Datum));
873 entries[0] = make_text_key(JGINFLAG_KEY,
874 VARDATA_ANY(query),
875 VARSIZE_ANY_EXHDR(query));
876 }
877 else if (strategy == JsonbExistsAnyStrategyNumber ||
879 {
880 /* Query is a text array; each element is treated as a key */
882 Datum *key_datums;
883 bool *key_nulls;
884 int key_count;
885 int i,
886 j;
887
888 deconstruct_array_builtin(query, TEXTOID, &key_datums, &key_nulls, &key_count);
889
890 entries = (Datum *) palloc(sizeof(Datum) * key_count);
891
892 for (i = 0, j = 0; i < key_count; i++)
893 {
894 /* Nulls in the array are ignored */
895 if (key_nulls[i])
896 continue;
897 /* We rely on the array elements not being toasted */
898 entries[j++] = make_text_key(JGINFLAG_KEY,
899 VARDATA_ANY(DatumGetPointer(key_datums[i])),
900 VARSIZE_ANY_EXHDR(DatumGetPointer(key_datums[i])));
901 }
902
903 *nentries = j;
904 /* ExistsAll with no keys should match everything */
905 if (j == 0 && strategy == JsonbExistsAllStrategyNumber)
906 *searchMode = GIN_SEARCH_MODE_ALL;
907 }
908 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
910 {
912 Pointer **extra_data = (Pointer **) PG_GETARG_POINTER(4);
913
914 entries = extract_jsp_query(jp, strategy, false, nentries, extra_data);
915
916 if (!entries)
917 *searchMode = GIN_SEARCH_MODE_ALL;
918 }
919 else
920 {
921 elog(ERROR, "unrecognized strategy number: %d", strategy);
922 entries = NULL; /* keep compiler quiet */
923 }
924
925 PG_RETURN_POINTER(entries);
926}
927
928Datum
930{
931 bool *check = (bool *) PG_GETARG_POINTER(0);
932 StrategyNumber strategy = PG_GETARG_UINT16(1);
933
934 /* Jsonb *query = PG_GETARG_JSONB_P(2); */
935 int32 nkeys = PG_GETARG_INT32(3);
936
937 Pointer *extra_data = (Pointer *) PG_GETARG_POINTER(4);
938 bool *recheck = (bool *) PG_GETARG_POINTER(5);
939 bool res = true;
940 int32 i;
941
942 if (strategy == JsonbContainsStrategyNumber)
943 {
944 /*
945 * We must always recheck, since we can't tell from the index whether
946 * the positions of the matched items match the structure of the query
947 * object. (Even if we could, we'd also have to worry about hashed
948 * keys and the index's failure to distinguish keys from string array
949 * elements.) However, the tuple certainly doesn't match unless it
950 * contains all the query keys.
951 */
952 *recheck = true;
953 for (i = 0; i < nkeys; i++)
954 {
955 if (!check[i])
956 {
957 res = false;
958 break;
959 }
960 }
961 }
962 else if (strategy == JsonbExistsStrategyNumber)
963 {
964 /*
965 * Although the key is certainly present in the index, we must recheck
966 * because (1) the key might be hashed, and (2) the index match might
967 * be for a key that's not at top level of the JSON object. For (1),
968 * we could look at the query key to see if it's hashed and not
969 * recheck if not, but the index lacks enough info to tell about (2).
970 */
971 *recheck = true;
972 res = true;
973 }
974 else if (strategy == JsonbExistsAnyStrategyNumber)
975 {
976 /* As for plain exists, we must recheck */
977 *recheck = true;
978 res = true;
979 }
980 else if (strategy == JsonbExistsAllStrategyNumber)
981 {
982 /* As for plain exists, we must recheck */
983 *recheck = true;
984 /* ... but unless all the keys are present, we can say "false" */
985 for (i = 0; i < nkeys; i++)
986 {
987 if (!check[i])
988 {
989 res = false;
990 break;
991 }
992 }
993 }
994 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
996 {
997 *recheck = true;
998
999 if (nkeys > 0)
1000 {
1001 Assert(extra_data && extra_data[0]);
1002 res = execute_jsp_gin_node(extra_data[0], check, false) != GIN_FALSE;
1003 }
1004 }
1005 else
1006 elog(ERROR, "unrecognized strategy number: %d", strategy);
1007
1008 PG_RETURN_BOOL(res);
1009}
1010
1011Datum
1013{
1015 StrategyNumber strategy = PG_GETARG_UINT16(1);
1016
1017 /* Jsonb *query = PG_GETARG_JSONB_P(2); */
1018 int32 nkeys = PG_GETARG_INT32(3);
1019 Pointer *extra_data = (Pointer *) PG_GETARG_POINTER(4);
1021 int32 i;
1022
1023 /*
1024 * Note that we never return GIN_TRUE, only GIN_MAYBE or GIN_FALSE; this
1025 * corresponds to always forcing recheck in the regular consistent
1026 * function, for the reasons listed there.
1027 */
1028 if (strategy == JsonbContainsStrategyNumber ||
1029 strategy == JsonbExistsAllStrategyNumber)
1030 {
1031 /* All extracted keys must be present */
1032 for (i = 0; i < nkeys; i++)
1033 {
1034 if (check[i] == GIN_FALSE)
1035 {
1036 res = GIN_FALSE;
1037 break;
1038 }
1039 }
1040 }
1041 else if (strategy == JsonbExistsStrategyNumber ||
1042 strategy == JsonbExistsAnyStrategyNumber)
1043 {
1044 /* At least one extracted key must be present */
1045 res = GIN_FALSE;
1046 for (i = 0; i < nkeys; i++)
1047 {
1048 if (check[i] == GIN_TRUE ||
1049 check[i] == GIN_MAYBE)
1050 {
1051 res = GIN_MAYBE;
1052 break;
1053 }
1054 }
1055 }
1056 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
1058 {
1059 if (nkeys > 0)
1060 {
1061 Assert(extra_data && extra_data[0]);
1062 res = execute_jsp_gin_node(extra_data[0], check, true);
1063
1064 /* Should always recheck the result */
1065 if (res == GIN_TRUE)
1066 res = GIN_MAYBE;
1067 }
1068 }
1069 else
1070 elog(ERROR, "unrecognized strategy number: %d", strategy);
1071
1073}
1074
1075/*
1076 *
1077 * jsonb_path_ops GIN opclass support functions
1078 *
1079 * In a jsonb_path_ops index, the GIN keys are uint32 hashes, one per JSON
1080 * value; but the JSON key(s) leading to each value are also included in its
1081 * hash computation. This means we can only support containment queries,
1082 * but the index can distinguish, for example, {"foo": 42} from {"bar": 42}
1083 * since different hashes will be generated.
1084 *
1085 */
1086
1087Datum
1089{
1090 Jsonb *jb = PG_GETARG_JSONB_P(0);
1091 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
1092 int total = JB_ROOT_COUNT(jb);
1093 JsonbIterator *it;
1094 JsonbValue v;
1096 PathHashStack tail;
1097 PathHashStack *stack;
1098 GinEntries entries;
1099
1100 /* If the root level is empty, we certainly have no keys */
1101 if (total == 0)
1102 {
1103 *nentries = 0;
1104 PG_RETURN_POINTER(NULL);
1105 }
1106
1107 /* Otherwise, use 2 * root count as initial estimate of result size */
1108 init_gin_entries(&entries, 2 * total);
1109
1110 /* We keep a stack of partial hashes corresponding to parent key levels */
1111 tail.parent = NULL;
1112 tail.hash = 0;
1113 stack = &tail;
1114
1115 it = JsonbIteratorInit(&jb->root);
1116
1117 while ((r = JsonbIteratorNext(&it, &v, false)) != WJB_DONE)
1118 {
1119 PathHashStack *parent;
1120
1121 switch (r)
1122 {
1123 case WJB_BEGIN_ARRAY:
1124 case WJB_BEGIN_OBJECT:
1125 /* Push a stack level for this object */
1126 parent = stack;
1127 stack = (PathHashStack *) palloc(sizeof(PathHashStack));
1128
1129 /*
1130 * We pass forward hashes from outer nesting levels so that
1131 * the hashes for nested values will include outer keys as
1132 * well as their own keys.
1133 *
1134 * Nesting an array within another array will not alter
1135 * innermost scalar element hash values, but that seems
1136 * inconsequential.
1137 */
1138 stack->hash = parent->hash;
1139 stack->parent = parent;
1140 break;
1141 case WJB_KEY:
1142 /* mix this key into the current outer hash */
1143 JsonbHashScalarValue(&v, &stack->hash);
1144 /* hash is now ready to incorporate the value */
1145 break;
1146 case WJB_ELEM:
1147 case WJB_VALUE:
1148 /* mix the element or value's hash into the prepared hash */
1149 JsonbHashScalarValue(&v, &stack->hash);
1150 /* and emit an index entry */
1151 add_gin_entry(&entries, UInt32GetDatum(stack->hash));
1152 /* reset hash for next key, value, or sub-object */
1153 stack->hash = stack->parent->hash;
1154 break;
1155 case WJB_END_ARRAY:
1156 case WJB_END_OBJECT:
1157 /* Pop the stack */
1158 parent = stack->parent;
1159 pfree(stack);
1160 stack = parent;
1161 /* reset hash for next key, value, or sub-object */
1162 if (stack->parent)
1163 stack->hash = stack->parent->hash;
1164 else
1165 stack->hash = 0;
1166 break;
1167 default:
1168 elog(ERROR, "invalid JsonbIteratorNext rc: %d", (int) r);
1169 }
1170 }
1171
1172 *nentries = entries.count;
1173
1174 PG_RETURN_POINTER(entries.buf);
1175}
1176
1177Datum
1179{
1180 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
1181 StrategyNumber strategy = PG_GETARG_UINT16(2);
1182 int32 *searchMode = (int32 *) PG_GETARG_POINTER(6);
1183 Datum *entries;
1184
1185 if (strategy == JsonbContainsStrategyNumber)
1186 {
1187 /* Query is a jsonb, so just apply gin_extract_jsonb_path ... */
1188 entries = (Datum *)
1190 PG_GETARG_DATUM(0),
1191 PointerGetDatum(nentries)));
1192
1193 /* ... although "contains {}" requires a full index scan */
1194 if (*nentries == 0)
1195 *searchMode = GIN_SEARCH_MODE_ALL;
1196 }
1197 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
1199 {
1201 Pointer **extra_data = (Pointer **) PG_GETARG_POINTER(4);
1202
1203 entries = extract_jsp_query(jp, strategy, true, nentries, extra_data);
1204
1205 if (!entries)
1206 *searchMode = GIN_SEARCH_MODE_ALL;
1207 }
1208 else
1209 {
1210 elog(ERROR, "unrecognized strategy number: %d", strategy);
1211 entries = NULL;
1212 }
1213
1214 PG_RETURN_POINTER(entries);
1215}
1216
1217Datum
1219{
1220 bool *check = (bool *) PG_GETARG_POINTER(0);
1221 StrategyNumber strategy = PG_GETARG_UINT16(1);
1222
1223 /* Jsonb *query = PG_GETARG_JSONB_P(2); */
1224 int32 nkeys = PG_GETARG_INT32(3);
1225 Pointer *extra_data = (Pointer *) PG_GETARG_POINTER(4);
1226 bool *recheck = (bool *) PG_GETARG_POINTER(5);
1227 bool res = true;
1228 int32 i;
1229
1230 if (strategy == JsonbContainsStrategyNumber)
1231 {
1232 /*
1233 * jsonb_path_ops is necessarily lossy, not only because of hash
1234 * collisions but also because it doesn't preserve complete
1235 * information about the structure of the JSON object. Besides, there
1236 * are some special rules around the containment of raw scalars in
1237 * arrays that are not handled here. So we must always recheck a
1238 * match. However, if not all of the keys are present, the tuple
1239 * certainly doesn't match.
1240 */
1241 *recheck = true;
1242 for (i = 0; i < nkeys; i++)
1243 {
1244 if (!check[i])
1245 {
1246 res = false;
1247 break;
1248 }
1249 }
1250 }
1251 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
1253 {
1254 *recheck = true;
1255
1256 if (nkeys > 0)
1257 {
1258 Assert(extra_data && extra_data[0]);
1259 res = execute_jsp_gin_node(extra_data[0], check, false) != GIN_FALSE;
1260 }
1261 }
1262 else
1263 elog(ERROR, "unrecognized strategy number: %d", strategy);
1264
1265 PG_RETURN_BOOL(res);
1266}
1267
1268Datum
1270{
1272 StrategyNumber strategy = PG_GETARG_UINT16(1);
1273
1274 /* Jsonb *query = PG_GETARG_JSONB_P(2); */
1275 int32 nkeys = PG_GETARG_INT32(3);
1276 Pointer *extra_data = (Pointer *) PG_GETARG_POINTER(4);
1278 int32 i;
1279
1280 if (strategy == JsonbContainsStrategyNumber)
1281 {
1282 /*
1283 * Note that we never return GIN_TRUE, only GIN_MAYBE or GIN_FALSE;
1284 * this corresponds to always forcing recheck in the regular
1285 * consistent function, for the reasons listed there.
1286 */
1287 for (i = 0; i < nkeys; i++)
1288 {
1289 if (check[i] == GIN_FALSE)
1290 {
1291 res = GIN_FALSE;
1292 break;
1293 }
1294 }
1295 }
1296 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
1298 {
1299 if (nkeys > 0)
1300 {
1301 Assert(extra_data && extra_data[0]);
1302 res = execute_jsp_gin_node(extra_data[0], check, true);
1303
1304 /* Should always recheck the result */
1305 if (res == GIN_TRUE)
1306 res = GIN_MAYBE;
1307 }
1308 }
1309 else
1310 elog(ERROR, "unrecognized strategy number: %d", strategy);
1311
1313}
1314
1315/*
1316 * Construct a jsonb_ops GIN key from a flag byte and a textual representation
1317 * (which need not be null-terminated). This function is responsible
1318 * for hashing overlength text representations; it will add the
1319 * JGINFLAG_HASHED bit to the flag value if it does that.
1320 */
1321static Datum
1322make_text_key(char flag, const char *str, int len)
1323{
1324 text *item;
1325 char hashbuf[10];
1326
1327 if (len > JGIN_MAXLENGTH)
1328 {
1329 uint32 hashval;
1330
1331 hashval = DatumGetUInt32(hash_any((const unsigned char *) str, len));
1332 snprintf(hashbuf, sizeof(hashbuf), "%08x", hashval);
1333 str = hashbuf;
1334 len = 8;
1336 }
1337
1338 /*
1339 * Now build the text Datum. For simplicity we build a 4-byte-header
1340 * varlena text Datum here, but we expect it will get converted to short
1341 * header format when stored in the index.
1342 */
1343 item = (text *) palloc(VARHDRSZ + len + 1);
1344 SET_VARSIZE(item, VARHDRSZ + len + 1);
1345
1346 *VARDATA(item) = flag;
1347
1348 memcpy(VARDATA(item) + 1, str, len);
1349
1350 return PointerGetDatum(item);
1351}
1352
1353/*
1354 * Create a textual representation of a JsonbValue that will serve as a GIN
1355 * key in a jsonb_ops index. is_key is true if the JsonbValue is a key,
1356 * or if it is a string array element (since we pretend those are keys,
1357 * see jsonb.h).
1358 */
1359static Datum
1360make_scalar_key(const JsonbValue *scalarVal, bool is_key)
1361{
1362 Datum item;
1363 char *cstr;
1364
1365 switch (scalarVal->type)
1366 {
1367 case jbvNull:
1368 Assert(!is_key);
1369 item = make_text_key(JGINFLAG_NULL, "", 0);
1370 break;
1371 case jbvBool:
1372 Assert(!is_key);
1374 scalarVal->val.boolean ? "t" : "f", 1);
1375 break;
1376 case jbvNumeric:
1377 Assert(!is_key);
1378
1379 /*
1380 * A normalized textual representation, free of trailing zeroes,
1381 * is required so that numerically equal values will produce equal
1382 * strings.
1383 *
1384 * It isn't ideal that numerics are stored in a relatively bulky
1385 * textual format. However, it's a notationally convenient way of
1386 * storing a "union" type in the GIN B-Tree, and indexing Jsonb
1387 * strings takes precedence.
1388 */
1389 cstr = numeric_normalize(scalarVal->val.numeric);
1390 item = make_text_key(JGINFLAG_NUM, cstr, strlen(cstr));
1391 pfree(cstr);
1392 break;
1393 case jbvString:
1394 item = make_text_key(is_key ? JGINFLAG_KEY : JGINFLAG_STR,
1395 scalarVal->val.string.val,
1396 scalarVal->val.string.len);
1397 break;
1398 default:
1399 elog(ERROR, "unrecognized jsonb scalar type: %d", scalarVal->type);
1400 item = 0; /* keep compiler quiet */
1401 break;
1402 }
1403
1404 return item;
1405}
#define PG_GETARG_ARRAYTYPE_P(n)
Definition: array.h:263
void deconstruct_array_builtin(const ArrayType *array, Oid elmtype, Datum **elemsp, bool **nullsp, int *nelemsp)
Definition: arrayfuncs.c:3698
char * numeric_normalize(Numeric num)
Definition: numeric.c:1009
static int32 next
Definition: blutils.c:224
#define VARHDRSZ
Definition: c.h:700
#define FLEXIBLE_ARRAY_MEMBER
Definition: c.h:475
int32_t int32
Definition: c.h:537
uint32_t uint32
Definition: c.h:541
void * Pointer
Definition: c.h:532
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:226
#define PG_FREE_IF_COPY(ptr, n)
Definition: fmgr.h:260
#define PG_GETARG_TEXT_PP(n)
Definition: fmgr.h:309
#define DirectFunctionCall2(func, arg1, arg2)
Definition: fmgr.h:684
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
#define PG_GETARG_DATUM(n)
Definition: fmgr.h:268
#define PG_GETARG_UINT16(n)
Definition: fmgr.h:272
#define PG_RETURN_INT32(x)
Definition: fmgr.h:354
#define PG_GETARG_INT32(n)
Definition: fmgr.h:269
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
#define PG_RETURN_GIN_TERNARY_VALUE(x)
Definition: gin.h:92
#define GIN_SEARCH_MODE_ALL
Definition: gin.h:38
#define GIN_FALSE
Definition: gin.h:76
char GinTernaryValue
Definition: gin.h:71
#define GIN_MAYBE
Definition: gin.h:78
#define GIN_TRUE
Definition: gin.h:77
static Datum hash_any(const unsigned char *k, int keylen)
Definition: hashfn.h:31
Assert(PointerIsAligned(start, uint64))
const char * str
int j
Definition: isn.c:78
int i
Definition: isn.c:77
@ jbvNumeric
Definition: jsonb.h:230
@ jbvBool
Definition: jsonb.h:231
@ jbvNull
Definition: jsonb.h:228
@ jbvString
Definition: jsonb.h:229
#define JGINFLAG_KEY
Definition: jsonb.h:62
#define JGINFLAG_STR
Definition: jsonb.h:66
#define JGINFLAG_NULL
Definition: jsonb.h:63
#define JGINFLAG_BOOL
Definition: jsonb.h:64
#define JGINFLAG_HASHED
Definition: jsonb.h:67
#define JGINFLAG_NUM
Definition: jsonb.h:65
#define PG_GETARG_JSONB_P(x)
Definition: jsonb.h:391
#define JsonbContainsStrategyNumber
Definition: jsonb.h:33
#define JGIN_MAXLENGTH
Definition: jsonb.h:68
#define JsonbJsonpathPredicateStrategyNumber
Definition: jsonb.h:38
#define JsonbExistsAllStrategyNumber
Definition: jsonb.h:36
#define JsonbExistsStrategyNumber
Definition: jsonb.h:34
#define JsonbExistsAnyStrategyNumber
Definition: jsonb.h:35
JsonbIteratorToken
Definition: jsonb.h:21
@ WJB_KEY
Definition: jsonb.h:23
@ WJB_DONE
Definition: jsonb.h:22
@ WJB_END_ARRAY
Definition: jsonb.h:27
@ WJB_VALUE
Definition: jsonb.h:24
@ WJB_END_OBJECT
Definition: jsonb.h:29
@ WJB_ELEM
Definition: jsonb.h:25
@ WJB_BEGIN_OBJECT
Definition: jsonb.h:28
@ WJB_BEGIN_ARRAY
Definition: jsonb.h:26
#define JsonbJsonpathExistsStrategyNumber
Definition: jsonb.h:37
#define JB_ROOT_COUNT(jbp_)
Definition: jsonb.h:219
static JsonPathGinNode * extract_jsp_bool_expr(JsonPathGinContext *cxt, JsonPathGinPath path, JsonPathItem *jsp, bool not)
Definition: jsonb_gin.c:583
JsonPathGinNodeType
Definition: jsonb_gin.c:88
@ JSP_GIN_AND
Definition: jsonb_gin.c:90
@ JSP_GIN_ENTRY
Definition: jsonb_gin.c:91
@ JSP_GIN_OR
Definition: jsonb_gin.c:89
static JsonPathGinNode * make_jsp_entry_node_scalar(JsonbValue *scalar, bool iskey)
Definition: jsonb_gin.c:364
Datum gin_compare_jsonb(PG_FUNCTION_ARGS)
Definition: jsonb_gin.c:203
static Datum make_text_key(char flag, const char *str, int len)
Definition: jsonb_gin.c:1322
static List * jsonb_path_ops__extract_nodes(JsonPathGinContext *cxt, JsonPathGinPath path, JsonbValue *scalar, List *nodes)
Definition: jsonb_gin.c:478
static GinTernaryValue execute_jsp_gin_node(JsonPathGinNode *node, void *check, bool ternary)
Definition: jsonb_gin.c:799
static JsonPathGinNode * make_jsp_expr_node_args(JsonPathGinNodeType type, List *args)
Definition: jsonb_gin.c:382
static JsonPathGinNode * extract_jsp_path_expr(JsonPathGinContext *cxt, JsonPathGinPath path, JsonPathItem *jsp, JsonbValue *scalar)
Definition: jsonb_gin.c:564
bool(* JsonPathGinAddPathItemFunc)(JsonPathGinPath *path, JsonPathItem *jsp)
Definition: jsonb_gin.c:134
static bool jsonb_ops__add_path_item(JsonPathGinPath *path, JsonPathItem *jsp)
Definition: jsonb_gin.c:278
static JsonPathGinNode * make_jsp_expr_node(JsonPathGinNodeType type, int nargs)
Definition: jsonb_gin.c:370
static Datum make_scalar_key(const JsonbValue *scalarVal, bool is_key)
Definition: jsonb_gin.c:1360
static List * jsonb_ops__extract_nodes(JsonPathGinContext *cxt, JsonPathGinPath path, JsonbValue *scalar, List *nodes)
Definition: jsonb_gin.c:408
static Datum * extract_jsp_query(JsonPath *jp, StrategyNumber strat, bool pathOps, int32 *nentries, Pointer **extra_data)
Definition: jsonb_gin.c:748
Datum gin_consistent_jsonb_path(PG_FUNCTION_ARGS)
Definition: jsonb_gin.c:1218
Datum gin_extract_jsonb_query(PG_FUNCTION_ARGS)
Definition: jsonb_gin.c:848
Datum gin_extract_jsonb(PG_FUNCTION_ARGS)
Definition: jsonb_gin.c:229
static List * extract_jsp_path_expr_nodes(JsonPathGinContext *cxt, JsonPathGinPath path, JsonPathItem *jsp, JsonbValue *scalar)
Definition: jsonb_gin.c:504
static void init_gin_entries(GinEntries *entries, int preallocated)
Definition: jsonb_gin.c:163
struct PathHashStack PathHashStack
struct GinEntries GinEntries
static bool jsonb_path_ops__add_path_item(JsonPathGinPath *path, JsonPathItem *jsp)
Definition: jsonb_gin.c:323
Datum gin_extract_jsonb_query_path(PG_FUNCTION_ARGS)
Definition: jsonb_gin.c:1178
Datum gin_consistent_jsonb(PG_FUNCTION_ARGS)
Definition: jsonb_gin.c:929
Datum gin_extract_jsonb_path(PG_FUNCTION_ARGS)
Definition: jsonb_gin.c:1088
struct JsonPathGinPathItem JsonPathGinPathItem
static int add_gin_entry(GinEntries *entries, Datum entry)
Definition: jsonb_gin.c:172
List *(* JsonPathGinExtractNodesFunc)(JsonPathGinContext *cxt, JsonPathGinPath path, JsonbValue *scalar, List *nodes)
Definition: jsonb_gin.c:141
static JsonPathGinNode * make_jsp_expr_node_binary(JsonPathGinNodeType type, JsonPathGinNode *arg1, JsonPathGinNode *arg2)
Definition: jsonb_gin.c:395
union JsonPathGinPath JsonPathGinPath
Datum gin_triconsistent_jsonb_path(PG_FUNCTION_ARGS)
Definition: jsonb_gin.c:1269
static JsonPathGinNode * make_jsp_entry_node(Datum entry)
Definition: jsonb_gin.c:353
static void emit_jsp_gin_entries(JsonPathGinNode *node, GinEntries *entries)
Definition: jsonb_gin.c:719
Datum gin_triconsistent_jsonb(PG_FUNCTION_ARGS)
Definition: jsonb_gin.c:1012
JsonbIterator * JsonbIteratorInit(JsonbContainer *container)
Definition: jsonb_util.c:818
void JsonbHashScalarValue(const JsonbValue *scalarVal, uint32 *hash)
Definition: jsonb_util.c:1326
JsonbIteratorToken JsonbIteratorNext(JsonbIterator **it, JsonbValue *val, bool skipNested)
Definition: jsonb_util.c:856
void jspGetLeftArg(JsonPathItem *v, JsonPathItem *a)
Definition: jsonpath.c:1166
void jspGetArg(JsonPathItem *v, JsonPathItem *a)
Definition: jsonpath.c:1081
void jspInit(JsonPathItem *v, JsonPath *js)
Definition: jsonpath.c:980
char * jspGetString(JsonPathItem *v, int32 *len)
Definition: jsonpath.c:1226
bool jspGetNext(JsonPathItem *v, JsonPathItem *a)
Definition: jsonpath.c:1099
void jspGetRightArg(JsonPathItem *v, JsonPathItem *a)
Definition: jsonpath.c:1188
#define PG_GETARG_JSONPATH_P(x)
Definition: jsonpath.h:46
#define jspIsScalar(type)
Definition: jsonpath.h:50
JsonPathItemType
Definition: jsonpath.h:63
@ jpiString
Definition: jsonpath.h:65
@ jpiIndexArray
Definition: jsonpath.h:87
@ jpiAny
Definition: jsonpath.h:88
@ jpiBool
Definition: jsonpath.h:67
@ jpiAnyArray
Definition: jsonpath.h:85
@ jpiExists
Definition: jsonpath.h:94
@ jpiNotEqual
Definition: jsonpath.h:73
@ jpiNot
Definition: jsonpath.h:70
@ jpiAnd
Definition: jsonpath.h:68
@ jpiOr
Definition: jsonpath.h:69
@ jpiRoot
Definition: jsonpath.h:91
@ jpiFilter
Definition: jsonpath.h:93
@ jpiNull
Definition: jsonpath.h:64
@ jpiCurrent
Definition: jsonpath.h:90
@ jpiEqual
Definition: jsonpath.h:72
@ jpiKey
Definition: jsonpath.h:89
@ jpiNumeric
Definition: jsonpath.h:66
@ jpiAnyKey
Definition: jsonpath.h:86
#define JSONPATH_LAX
Definition: jsonpath.h:31
List * lappend(List *list, void *datum)
Definition: list.c:339
void * repalloc(void *pointer, Size size)
Definition: mcxt.c:1610
void pfree(void *pointer)
Definition: mcxt.c:1594
void * palloc0(Size size)
Definition: mcxt.c:1395
void * palloc(Size size)
Definition: mcxt.c:1365
struct NumericData * Numeric
Definition: numeric.h:57
void * arg
const void size_t len
#define lfirst(lc)
Definition: pg_list.h:172
static int list_length(const List *l)
Definition: pg_list.h:152
#define NIL
Definition: pg_list.h:68
#define linitial(l)
Definition: pg_list.h:178
#define snprintf
Definition: port.h:260
static uint32 DatumGetUInt32(Datum X)
Definition: postgres.h:232
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:332
uint64_t Datum
Definition: postgres.h:70
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:322
static Datum UInt32GetDatum(uint32 X)
Definition: postgres.h:242
tree ctl root
Definition: radixtree.h:1857
static unsigned hash(unsigned *uv, int n)
Definition: rege_dfa.c:715
void check_stack_depth(void)
Definition: stack_depth.c:95
uint16 StrategyNumber
Definition: stratnum.h:22
int allocated
Definition: jsonb_gin.c:84
Datum * buf
Definition: jsonb_gin.c:82
int count
Definition: jsonb_gin.c:83
JsonPathGinExtractNodesFunc extract_nodes
Definition: jsonb_gin.c:150
JsonPathGinAddPathItemFunc add_path_item
Definition: jsonb_gin.c:149
union JsonPathGinNode::@25 val
JsonPathGinNodeType type
Definition: jsonb_gin.c:99
JsonPathGinNode * args[FLEXIBLE_ARRAY_MEMBER]
Definition: jsonb_gin.c:108
Datum entryDatum
Definition: jsonb_gin.c:105
JsonPathItemType type
Definition: jsonb_gin.c:121
struct JsonPathGinPathItem * parent
Definition: jsonb_gin.c:119
int32 datalen
Definition: jsonpath.h:181
union JsonPathItem::@152 content
JsonPathItemType type
Definition: jsonpath.h:137
char * data
Definition: jsonpath.h:180
struct JsonPathItem::@152::@156 value
uint32 header
Definition: jsonpath.h:26
enum jbvType type
Definition: jsonb.h:255
char * val
Definition: jsonb.h:264
Definition: jsonb.h:213
JsonbContainer root
Definition: jsonb.h:215
Definition: pg_list.h:54
uint32 hash
Definition: jsonb_gin.c:75
struct PathHashStack * parent
Definition: jsonb_gin.c:76
Definition: type.h:96
Definition: c.h:695
char * flag(int b)
Definition: test-ctype.c:33
JsonPathGinPathItem * items
Definition: jsonb_gin.c:127
static Size VARSIZE_ANY_EXHDR(const void *PTR)
Definition: varatt.h:472
static char * VARDATA(const void *PTR)
Definition: varatt.h:305
static char * VARDATA_ANY(const void *PTR)
Definition: varatt.h:486
static void SET_VARSIZE(void *PTR, Size len)
Definition: varatt.h:432
int varstr_cmp(const char *arg1, int len1, const char *arg2, int len2, Oid collid)
Definition: varlena.c:1297
const char * type