PostgreSQL Source Code git master
Loading...
Searching...
No Matches
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-2026, 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
78
79/* Buffer for GIN entries */
80typedef struct GinEntries
81{
83 int count;
86
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 */
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 */
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_array(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_array(entries->buf,
182 Datum,
183 entries->allocated);
184 }
185 else
186 {
187 entries->allocated = 8;
188 entries->buf = palloc_array(Datum, entries->allocated);
189 }
190 }
191
192 entries->buf[entries->count++] = entry;
193
194 return id;
195}
196
197/*
198 *
199 * jsonb_ops GIN opclass support functions
200 *
201 */
202
203Datum
205{
208 int32 result;
209 char *a1p,
210 *a2p;
211 int len1,
212 len2;
213
216
217 len1 = VARSIZE_ANY_EXHDR(arg1);
218 len2 = VARSIZE_ANY_EXHDR(arg2);
219
220 /* Compare text as bttextcmp does, but always using C collation */
221 result = varstr_cmp(a1p, len1, a2p, len2, C_COLLATION_OID);
222
225
226 PG_RETURN_INT32(result);
227}
228
229Datum
231{
233 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
234 int total = JB_ROOT_COUNT(jb);
236 JsonbValue v;
238 GinEntries entries;
239
240 /* If the root level is empty, we certainly have no keys */
241 if (total == 0)
242 {
243 *nentries = 0;
245 }
246
247 /* Otherwise, use 2 * root count as initial estimate of result size */
248 init_gin_entries(&entries, 2 * total);
249
250 it = JsonbIteratorInit(&jb->root);
251
252 while ((r = JsonbIteratorNext(&it, &v, false)) != WJB_DONE)
253 {
254 switch (r)
255 {
256 case WJB_KEY:
257 add_gin_entry(&entries, make_scalar_key(&v, true));
258 break;
259 case WJB_ELEM:
260 /* Pretend string array elements are keys, see jsonb.h */
261 add_gin_entry(&entries, make_scalar_key(&v, v.type == jbvString));
262 break;
263 case WJB_VALUE:
264 add_gin_entry(&entries, make_scalar_key(&v, false));
265 break;
266 default:
267 /* we can ignore structural items */
268 break;
269 }
270 }
271
272 *nentries = entries.count;
273
274 PG_RETURN_POINTER(entries.buf);
275}
276
277/* Append JsonPathGinPathItem to JsonPathGinPath (jsonb_ops) */
278static bool
280{
282 Datum keyName;
283
284 switch (jsp->type)
285 {
286 case jpiRoot:
287 path->items = NULL; /* reset path */
288 return true;
289
290 case jpiKey:
291 {
292 int len;
293 char *key = jspGetString(jsp, &len);
294
295 keyName = make_text_key(JGINFLAG_KEY, key, len);
296 break;
297 }
298
299 case jpiAny:
300 case jpiAnyKey:
301 case jpiAnyArray:
302 case jpiIndexArray:
303 keyName = PointerGetDatum(NULL);
304 break;
305
306 default:
307 /* other path items like item methods are not supported */
308 return false;
309 }
310
312
313 pentry->type = jsp->type;
314 pentry->keyName = keyName;
315 pentry->parent = path->items;
316
317 path->items = pentry;
318
319 return true;
320}
321
322/* Combine existing path hash with next key hash (jsonb_path_ops) */
323static bool
325{
326 switch (jsp->type)
327 {
328 case jpiRoot:
329 path->hash = 0; /* reset path hash */
330 return true;
331
332 case jpiKey:
333 {
335
337 jbv.val.string.val = jspGetString(jsp, &jbv.val.string.len);
338
339 JsonbHashScalarValue(&jbv, &path->hash);
340 return true;
341 }
342
343 case jpiIndexArray:
344 case jpiAnyArray:
345 return true; /* path hash is unchanged */
346
347 default:
348 /* other items (wildcard paths, item methods) are not supported */
349 return false;
350 }
351}
352
353static JsonPathGinNode *
355{
357
358 node->type = JSP_GIN_ENTRY;
359 node->val.entryDatum = entry;
360
361 return node;
362}
363
364static JsonPathGinNode *
369
370static JsonPathGinNode *
372{
374 sizeof(node->args[0]) * nargs);
375
376 node->type = type;
377 node->val.nargs = nargs;
378
379 return node;
380}
381
382static JsonPathGinNode *
384{
386 ListCell *lc;
387 int i = 0;
388
389 foreach(lc, args)
390 node->args[i++] = lfirst(lc);
391
392 return node;
393}
394
395static JsonPathGinNode *
398{
400
401 node->args[0] = arg1;
402 node->args[1] = arg2;
403
404 return node;
405}
406
407/* Append a list of nodes from the jsonpath (jsonb_ops). */
408static List *
410 JsonbValue *scalar, List *nodes)
411{
413
414 if (scalar)
415 {
416 JsonPathGinNode *node;
417
418 /*
419 * Append path entry nodes only if scalar is provided. See header
420 * comment for details.
421 */
422 for (pentry = path.items; pentry; pentry = pentry->parent)
423 {
424 if (pentry->type == jpiKey) /* only keys are indexed */
426 }
427
428 /* Append scalar node for equality queries. */
429 if (scalar->type == jbvString)
430 {
431 JsonPathGinPathItem *last = path.items;
433
434 /*
435 * Assuming that jsonb_ops interprets string array elements as
436 * keys, we may extract key or non-key entry or even both. In the
437 * latter case we create OR-node. It is possible in lax mode
438 * where arrays are automatically unwrapped, or in strict mode for
439 * jpiAny items.
440 */
441
442 if (cxt->lax)
444 else if (!last) /* root ($) */
446 else if (last->type == jpiAnyArray || last->type == jpiIndexArray)
448 else if (last->type == jpiAny)
450 else
452
453 if (key_entry == GIN_MAYBE)
454 {
457
459 }
460 else
461 {
462 node = make_jsp_entry_node_scalar(scalar,
464 }
465 }
466 else
467 {
468 node = make_jsp_entry_node_scalar(scalar, false);
469 }
470
471 nodes = lappend(nodes, node);
472 }
473
474 return nodes;
475}
476
477/* Append a list of nodes from the jsonpath (jsonb_path_ops). */
478static List *
480 JsonbValue *scalar, List *nodes)
481{
482 if (scalar)
483 {
484 /* append path hash node for equality queries */
485 uint32 hash = path.hash;
486
487 JsonbHashScalarValue(scalar, &hash);
488
489 return lappend(nodes,
491 }
492 else
493 {
494 /* jsonb_path_ops doesn't support EXISTS queries => nothing to append */
495 return nodes;
496 }
497}
498
499/*
500 * Extract a list of expression nodes that need to be AND-ed by the caller.
501 * Extracted expression is 'path == scalar' if 'scalar' is non-NULL, and
502 * 'EXISTS(path)' otherwise.
503 */
504static List *
506 JsonPathItem *jsp, JsonbValue *scalar)
507{
509 List *nodes = NIL;
510
511 for (;;)
512 {
513 switch (jsp->type)
514 {
515 case jpiCurrent:
516 break;
517
518 case jpiFilter:
519 {
521 JsonPathGinNode *filter;
522
523 jspGetArg(jsp, &arg);
524
525 filter = extract_jsp_bool_expr(cxt, path, &arg, false);
526
527 if (filter)
528 nodes = lappend(nodes, filter);
529
530 break;
531 }
532
533 default:
534 if (!cxt->add_path_item(&path, jsp))
535
536 /*
537 * Path is not supported by the index opclass, return only
538 * the extracted filter nodes.
539 */
540 return nodes;
541 break;
542 }
543
544 if (!jspGetNext(jsp, &next))
545 break;
546
547 jsp = &next;
548 }
549
550 /*
551 * Append nodes from the path expression itself to the already extracted
552 * list of filter nodes.
553 */
554 return cxt->extract_nodes(cxt, path, scalar, nodes);
555}
556
557/*
558 * Extract an expression node from one of following jsonpath path expressions:
559 * EXISTS(jsp) (when 'scalar' is NULL)
560 * jsp == scalar (when 'scalar' is not NULL).
561 *
562 * The current path (@) is passed in 'path'.
563 */
564static JsonPathGinNode *
566 JsonPathItem *jsp, JsonbValue *scalar)
567{
568 /* extract a list of nodes to be AND-ed */
569 List *nodes = extract_jsp_path_expr_nodes(cxt, path, jsp, scalar);
570
571 if (nodes == NIL)
572 /* no nodes were extracted => full scan is needed for this path */
573 return NULL;
574
575 if (list_length(nodes) == 1)
576 return linitial(nodes); /* avoid extra AND-node */
577
578 /* construct AND-node for path with filters */
580}
581
582/* Recursively extract nodes from the boolean jsonpath expression. */
583static JsonPathGinNode *
585 JsonPathItem *jsp, bool not)
586{
588
589 switch (jsp->type)
590 {
591 case jpiAnd: /* expr && expr */
592 case jpiOr: /* expr || expr */
593 {
595 JsonPathGinNode *larg;
596 JsonPathGinNode *rarg;
598
600 larg = extract_jsp_bool_expr(cxt, path, &arg, not);
601
603 rarg = extract_jsp_bool_expr(cxt, path, &arg, not);
604
605 if (!larg || !rarg)
606 {
607 if (jsp->type == jpiOr)
608 return NULL;
609
610 return larg ? larg : rarg;
611 }
612
613 type = not ^ (jsp->type == jpiAnd) ? JSP_GIN_AND : JSP_GIN_OR;
614
615 return make_jsp_expr_node_binary(type, larg, rarg);
616 }
617
618 case jpiNot: /* !expr */
619 {
621
622 jspGetArg(jsp, &arg);
623
624 /* extract child expression inverting 'not' flag */
625 return extract_jsp_bool_expr(cxt, path, &arg, !not);
626 }
627
628 case jpiExists: /* EXISTS(path) */
629 {
631
632 if (not)
633 return NULL; /* NOT EXISTS is not supported */
634
635 jspGetArg(jsp, &arg);
636
637 return extract_jsp_path_expr(cxt, path, &arg, NULL);
638 }
639
640 case jpiNotEqual:
641
642 /*
643 * 'not' == true case is not supported here because '!(path !=
644 * scalar)' is not equivalent to 'path == scalar' in the general
645 * case because of sequence comparison semantics: 'path == scalar'
646 * === 'EXISTS (path, @ == scalar)', '!(path != scalar)' ===
647 * 'FOR_ALL(path, @ == scalar)'. So, we should translate '!(path
648 * != scalar)' into GIN query 'path == scalar || EMPTY(path)', but
649 * 'EMPTY(path)' queries are not supported by the both jsonb
650 * opclasses. However in strict mode we could omit 'EMPTY(path)'
651 * part if the path can return exactly one item (it does not
652 * contain wildcard accessors or item methods like .keyvalue()
653 * etc.).
654 */
655 return NULL;
656
657 case jpiEqual: /* path == scalar */
658 {
663 JsonbValue scalar;
664
665 if (not)
666 return NULL;
667
670
671 if (jspIsScalar(left_item.type))
672 {
675 }
676 else if (jspIsScalar(right_item.type))
677 {
680 }
681 else
682 return NULL; /* at least one operand should be a scalar */
683
684 switch (scalar_item->type)
685 {
686 case jpiNull:
687 scalar.type = jbvNull;
688 break;
689 case jpiBool:
690 scalar.type = jbvBool;
691 scalar.val.boolean = !!*scalar_item->content.value.data;
692 break;
693 case jpiNumeric:
694 scalar.type = jbvNumeric;
695 scalar.val.numeric =
696 (Numeric) scalar_item->content.value.data;
697 break;
698 case jpiString:
699 scalar.type = jbvString;
700 scalar.val.string.val = scalar_item->content.value.data;
701 scalar.val.string.len =
702 scalar_item->content.value.datalen;
703 break;
704 default:
705 elog(ERROR, "invalid scalar jsonpath item type: %d",
706 scalar_item->type);
707 return NULL;
708 }
709
710 return extract_jsp_path_expr(cxt, path, path_item, &scalar);
711 }
712
713 default:
714 return NULL; /* not a boolean expression */
715 }
716}
717
718/* Recursively emit all GIN entries found in the node tree */
719static void
721{
723
724 switch (node->type)
725 {
726 case JSP_GIN_ENTRY:
727 /* replace datum with its index in the array */
728 node->val.entryIndex = add_gin_entry(entries, node->val.entryDatum);
729 break;
730
731 case JSP_GIN_OR:
732 case JSP_GIN_AND:
733 {
734 int i;
735
736 for (i = 0; i < node->val.nargs; i++)
737 emit_jsp_gin_entries(node->args[i], entries);
738
739 break;
740 }
741 }
742}
743
744/*
745 * Recursively extract GIN entries from jsonpath query.
746 * Root expression node is put into (*extra_data)[0].
747 */
748static Datum *
750 int32 *nentries, Pointer **extra_data)
751{
754 JsonPathGinNode *node;
755 JsonPathGinPath path = {0};
756 GinEntries entries = {0};
757
758 cxt.lax = (jp->header & JSONPATH_LAX) != 0;
759
760 if (pathOps)
761 {
764 }
765 else
766 {
769 }
770
771 jspInit(&root, jp);
772
774 ? extract_jsp_path_expr(&cxt, path, &root, NULL)
775 : extract_jsp_bool_expr(&cxt, path, &root, false);
776
777 if (!node)
778 {
779 *nentries = 0;
780 return NULL;
781 }
782
783 emit_jsp_gin_entries(node, &entries);
784
785 *nentries = entries.count;
786 if (!*nentries)
787 return NULL;
788
789 *extra_data = palloc0_array(Pointer, entries.count);
790 **extra_data = (Pointer) node;
791
792 return entries.buf;
793}
794
795/*
796 * Recursively execute jsonpath expression.
797 * 'check' is a bool[] or a GinTernaryValue[] depending on 'ternary' flag.
798 */
799static GinTernaryValue
801{
802 GinTernaryValue res;
804 int i;
805
806 switch (node->type)
807 {
808 case JSP_GIN_AND:
809 res = GIN_TRUE;
810 for (i = 0; i < node->val.nargs; i++)
811 {
812 v = execute_jsp_gin_node(node->args[i], check, ternary);
813 if (v == GIN_FALSE)
814 return GIN_FALSE;
815 else if (v == GIN_MAYBE)
816 res = GIN_MAYBE;
817 }
818 return res;
819
820 case JSP_GIN_OR:
821 res = GIN_FALSE;
822 for (i = 0; i < node->val.nargs; i++)
823 {
824 v = execute_jsp_gin_node(node->args[i], check, ternary);
825 if (v == GIN_TRUE)
826 return GIN_TRUE;
827 else if (v == GIN_MAYBE)
828 res = GIN_MAYBE;
829 }
830 return res;
831
832 case JSP_GIN_ENTRY:
833 {
834 int index = node->val.entryIndex;
835
836 if (ternary)
837 return ((GinTernaryValue *) check)[index];
838 else
839 return ((bool *) check)[index] ? GIN_TRUE : GIN_FALSE;
840 }
841
842 default:
843 elog(ERROR, "invalid jsonpath gin node type: %d", node->type);
844 return GIN_FALSE; /* keep compiler quiet */
845 }
846}
847
848Datum
850{
851 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
852 StrategyNumber strategy = PG_GETARG_UINT16(2);
853 int32 *searchMode = (int32 *) PG_GETARG_POINTER(6);
854 Datum *entries;
855
856 if (strategy == JsonbContainsStrategyNumber)
857 {
858 /* Query is a jsonb, so just apply gin_extract_jsonb... */
859 entries = (Datum *)
862 PointerGetDatum(nentries)));
863 /* ...although "contains {}" requires a full index scan */
864 if (*nentries == 0)
865 *searchMode = GIN_SEARCH_MODE_ALL;
866 }
867 else if (strategy == JsonbExistsStrategyNumber)
868 {
869 /* Query is a text string, which we treat as a key */
870 text *query = PG_GETARG_TEXT_PP(0);
871
872 *nentries = 1;
873 entries = palloc_object(Datum);
874 entries[0] = make_text_key(JGINFLAG_KEY,
875 VARDATA_ANY(query),
876 VARSIZE_ANY_EXHDR(query));
877 }
878 else if (strategy == JsonbExistsAnyStrategyNumber ||
880 {
881 /* Query is a text array; each element is treated as a key */
884 bool *key_nulls;
885 int key_count;
886 int i,
887 j;
888
890
891 entries = palloc_array(Datum, key_count);
892
893 for (i = 0, j = 0; i < key_count; i++)
894 {
895 /* Nulls in the array are ignored */
896 if (key_nulls[i])
897 continue;
898 /* We rely on the array elements not being toasted */
899 entries[j++] = make_text_key(JGINFLAG_KEY,
902 }
903
904 *nentries = j;
905 /* ExistsAll with no keys should match everything */
906 if (j == 0 && strategy == JsonbExistsAllStrategyNumber)
907 *searchMode = GIN_SEARCH_MODE_ALL;
908 }
909 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
911 {
913 Pointer **extra_data = (Pointer **) PG_GETARG_POINTER(4);
914
915 entries = extract_jsp_query(jp, strategy, false, nentries, extra_data);
916
917 if (!entries)
918 *searchMode = GIN_SEARCH_MODE_ALL;
919 }
920 else
921 {
922 elog(ERROR, "unrecognized strategy number: %d", strategy);
923 entries = NULL; /* keep compiler quiet */
924 }
925
926 PG_RETURN_POINTER(entries);
927}
928
929Datum
931{
932 bool *check = (bool *) PG_GETARG_POINTER(0);
933 StrategyNumber strategy = PG_GETARG_UINT16(1);
934#ifdef NOT_USED
935 Jsonb *query = PG_GETARG_JSONB_P(2);
936#endif
937 int32 nkeys = PG_GETARG_INT32(3);
938
939 Pointer *extra_data = (Pointer *) PG_GETARG_POINTER(4);
940 bool *recheck = (bool *) PG_GETARG_POINTER(5);
941 bool res = true;
942 int32 i;
943
944 if (strategy == JsonbContainsStrategyNumber)
945 {
946 /*
947 * We must always recheck, since we can't tell from the index whether
948 * the positions of the matched items match the structure of the query
949 * object. (Even if we could, we'd also have to worry about hashed
950 * keys and the index's failure to distinguish keys from string array
951 * elements.) However, the tuple certainly doesn't match unless it
952 * contains all the query keys.
953 */
954 *recheck = true;
955 for (i = 0; i < nkeys; i++)
956 {
957 if (!check[i])
958 {
959 res = false;
960 break;
961 }
962 }
963 }
964 else if (strategy == JsonbExistsStrategyNumber)
965 {
966 /*
967 * Although the key is certainly present in the index, we must recheck
968 * because (1) the key might be hashed, and (2) the index match might
969 * be for a key that's not at top level of the JSON object. For (1),
970 * we could look at the query key to see if it's hashed and not
971 * recheck if not, but the index lacks enough info to tell about (2).
972 */
973 *recheck = true;
974 res = true;
975 }
976 else if (strategy == JsonbExistsAnyStrategyNumber)
977 {
978 /* As for plain exists, we must recheck */
979 *recheck = true;
980 res = true;
981 }
982 else if (strategy == JsonbExistsAllStrategyNumber)
983 {
984 /* As for plain exists, we must recheck */
985 *recheck = true;
986 /* ... but unless all the keys are present, we can say "false" */
987 for (i = 0; i < nkeys; i++)
988 {
989 if (!check[i])
990 {
991 res = false;
992 break;
993 }
994 }
995 }
996 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
998 {
999 *recheck = true;
1000
1001 if (nkeys > 0)
1002 {
1003 Assert(extra_data && extra_data[0]);
1004 res = execute_jsp_gin_node(extra_data[0], check, false) != GIN_FALSE;
1005 }
1006 }
1007 else
1008 elog(ERROR, "unrecognized strategy number: %d", strategy);
1009
1010 PG_RETURN_BOOL(res);
1011}
1012
1013Datum
1015{
1017 StrategyNumber strategy = PG_GETARG_UINT16(1);
1018#ifdef NOT_USED
1019 Jsonb *query = PG_GETARG_JSONB_P(2);
1020#endif
1021 int32 nkeys = PG_GETARG_INT32(3);
1022 Pointer *extra_data = (Pointer *) PG_GETARG_POINTER(4);
1024 int32 i;
1025
1026 /*
1027 * Note that we never return GIN_TRUE, only GIN_MAYBE or GIN_FALSE; this
1028 * corresponds to always forcing recheck in the regular consistent
1029 * function, for the reasons listed there.
1030 */
1031 if (strategy == JsonbContainsStrategyNumber ||
1032 strategy == JsonbExistsAllStrategyNumber)
1033 {
1034 /* All extracted keys must be present */
1035 for (i = 0; i < nkeys; i++)
1036 {
1037 if (check[i] == GIN_FALSE)
1038 {
1039 res = GIN_FALSE;
1040 break;
1041 }
1042 }
1043 }
1044 else if (strategy == JsonbExistsStrategyNumber ||
1045 strategy == JsonbExistsAnyStrategyNumber)
1046 {
1047 /* At least one extracted key must be present */
1048 res = GIN_FALSE;
1049 for (i = 0; i < nkeys; i++)
1050 {
1051 if (check[i] == GIN_TRUE ||
1052 check[i] == GIN_MAYBE)
1053 {
1054 res = GIN_MAYBE;
1055 break;
1056 }
1057 }
1058 }
1059 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
1061 {
1062 if (nkeys > 0)
1063 {
1064 Assert(extra_data && extra_data[0]);
1065 res = execute_jsp_gin_node(extra_data[0], check, true);
1066
1067 /* Should always recheck the result */
1068 if (res == GIN_TRUE)
1069 res = GIN_MAYBE;
1070 }
1071 }
1072 else
1073 elog(ERROR, "unrecognized strategy number: %d", strategy);
1074
1076}
1077
1078/*
1079 *
1080 * jsonb_path_ops GIN opclass support functions
1081 *
1082 * In a jsonb_path_ops index, the GIN keys are uint32 hashes, one per JSON
1083 * value; but the JSON key(s) leading to each value are also included in its
1084 * hash computation. This means we can only support containment queries,
1085 * but the index can distinguish, for example, {"foo": 42} from {"bar": 42}
1086 * since different hashes will be generated.
1087 *
1088 */
1089
1090Datum
1092{
1094 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
1095 int total = JB_ROOT_COUNT(jb);
1097 JsonbValue v;
1099 PathHashStack tail;
1100 PathHashStack *stack;
1101 GinEntries entries;
1102
1103 /* If the root level is empty, we certainly have no keys */
1104 if (total == 0)
1105 {
1106 *nentries = 0;
1108 }
1109
1110 /* Otherwise, use 2 * root count as initial estimate of result size */
1111 init_gin_entries(&entries, 2 * total);
1112
1113 /* We keep a stack of partial hashes corresponding to parent key levels */
1114 tail.parent = NULL;
1115 tail.hash = 0;
1116 stack = &tail;
1117
1118 it = JsonbIteratorInit(&jb->root);
1119
1120 while ((r = JsonbIteratorNext(&it, &v, false)) != WJB_DONE)
1121 {
1122 PathHashStack *parent;
1123
1124 switch (r)
1125 {
1126 case WJB_BEGIN_ARRAY:
1127 case WJB_BEGIN_OBJECT:
1128 /* Push a stack level for this object */
1129 parent = stack;
1131
1132 /*
1133 * We pass forward hashes from outer nesting levels so that
1134 * the hashes for nested values will include outer keys as
1135 * well as their own keys.
1136 *
1137 * Nesting an array within another array will not alter
1138 * innermost scalar element hash values, but that seems
1139 * inconsequential.
1140 */
1141 stack->hash = parent->hash;
1142 stack->parent = parent;
1143 break;
1144 case WJB_KEY:
1145 /* mix this key into the current outer hash */
1146 JsonbHashScalarValue(&v, &stack->hash);
1147 /* hash is now ready to incorporate the value */
1148 break;
1149 case WJB_ELEM:
1150 case WJB_VALUE:
1151 /* mix the element or value's hash into the prepared hash */
1152 JsonbHashScalarValue(&v, &stack->hash);
1153 /* and emit an index entry */
1154 add_gin_entry(&entries, UInt32GetDatum(stack->hash));
1155 /* reset hash for next key, value, or sub-object */
1156 stack->hash = stack->parent->hash;
1157 break;
1158 case WJB_END_ARRAY:
1159 case WJB_END_OBJECT:
1160 /* Pop the stack */
1161 parent = stack->parent;
1162 pfree(stack);
1163 stack = parent;
1164 /* reset hash for next key, value, or sub-object */
1165 if (stack->parent)
1166 stack->hash = stack->parent->hash;
1167 else
1168 stack->hash = 0;
1169 break;
1170 default:
1171 elog(ERROR, "invalid JsonbIteratorNext rc: %d", (int) r);
1172 }
1173 }
1174
1175 *nentries = entries.count;
1176
1177 PG_RETURN_POINTER(entries.buf);
1178}
1179
1180Datum
1182{
1183 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
1184 StrategyNumber strategy = PG_GETARG_UINT16(2);
1185 int32 *searchMode = (int32 *) PG_GETARG_POINTER(6);
1186 Datum *entries;
1187
1188 if (strategy == JsonbContainsStrategyNumber)
1189 {
1190 /* Query is a jsonb, so just apply gin_extract_jsonb_path ... */
1191 entries = (Datum *)
1193 PG_GETARG_DATUM(0),
1194 PointerGetDatum(nentries)));
1195
1196 /* ... although "contains {}" requires a full index scan */
1197 if (*nentries == 0)
1198 *searchMode = GIN_SEARCH_MODE_ALL;
1199 }
1200 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
1202 {
1204 Pointer **extra_data = (Pointer **) PG_GETARG_POINTER(4);
1205
1206 entries = extract_jsp_query(jp, strategy, true, nentries, extra_data);
1207
1208 if (!entries)
1209 *searchMode = GIN_SEARCH_MODE_ALL;
1210 }
1211 else
1212 {
1213 elog(ERROR, "unrecognized strategy number: %d", strategy);
1214 entries = NULL;
1215 }
1216
1217 PG_RETURN_POINTER(entries);
1218}
1219
1220Datum
1222{
1223 bool *check = (bool *) PG_GETARG_POINTER(0);
1224 StrategyNumber strategy = PG_GETARG_UINT16(1);
1225#ifdef NOT_USED
1226 Jsonb *query = PG_GETARG_JSONB_P(2);
1227#endif
1228 int32 nkeys = PG_GETARG_INT32(3);
1229 Pointer *extra_data = (Pointer *) PG_GETARG_POINTER(4);
1230 bool *recheck = (bool *) PG_GETARG_POINTER(5);
1231 bool res = true;
1232 int32 i;
1233
1234 if (strategy == JsonbContainsStrategyNumber)
1235 {
1236 /*
1237 * jsonb_path_ops is necessarily lossy, not only because of hash
1238 * collisions but also because it doesn't preserve complete
1239 * information about the structure of the JSON object. Besides, there
1240 * are some special rules around the containment of raw scalars in
1241 * arrays that are not handled here. So we must always recheck a
1242 * match. However, if not all of the keys are present, the tuple
1243 * certainly doesn't match.
1244 */
1245 *recheck = true;
1246 for (i = 0; i < nkeys; i++)
1247 {
1248 if (!check[i])
1249 {
1250 res = false;
1251 break;
1252 }
1253 }
1254 }
1255 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
1257 {
1258 *recheck = true;
1259
1260 if (nkeys > 0)
1261 {
1262 Assert(extra_data && extra_data[0]);
1263 res = execute_jsp_gin_node(extra_data[0], check, false) != GIN_FALSE;
1264 }
1265 }
1266 else
1267 elog(ERROR, "unrecognized strategy number: %d", strategy);
1268
1269 PG_RETURN_BOOL(res);
1270}
1271
1272Datum
1274{
1276 StrategyNumber strategy = PG_GETARG_UINT16(1);
1277#ifdef NOT_USED
1278 Jsonb *query = PG_GETARG_JSONB_P(2);
1279#endif
1280 int32 nkeys = PG_GETARG_INT32(3);
1281 Pointer *extra_data = (Pointer *) PG_GETARG_POINTER(4);
1283 int32 i;
1284
1285 if (strategy == JsonbContainsStrategyNumber)
1286 {
1287 /*
1288 * Note that we never return GIN_TRUE, only GIN_MAYBE or GIN_FALSE;
1289 * this corresponds to always forcing recheck in the regular
1290 * consistent function, for the reasons listed there.
1291 */
1292 for (i = 0; i < nkeys; i++)
1293 {
1294 if (check[i] == GIN_FALSE)
1295 {
1296 res = GIN_FALSE;
1297 break;
1298 }
1299 }
1300 }
1301 else if (strategy == JsonbJsonpathPredicateStrategyNumber ||
1303 {
1304 if (nkeys > 0)
1305 {
1306 Assert(extra_data && extra_data[0]);
1307 res = execute_jsp_gin_node(extra_data[0], check, true);
1308
1309 /* Should always recheck the result */
1310 if (res == GIN_TRUE)
1311 res = GIN_MAYBE;
1312 }
1313 }
1314 else
1315 elog(ERROR, "unrecognized strategy number: %d", strategy);
1316
1318}
1319
1320/*
1321 * Construct a jsonb_ops GIN key from a flag byte and a textual representation
1322 * (which need not be null-terminated). This function is responsible
1323 * for hashing overlength text representations; it will add the
1324 * JGINFLAG_HASHED bit to the flag value if it does that.
1325 */
1326static Datum
1327make_text_key(char flag, const char *str, int len)
1328{
1329 text *item;
1330 char hashbuf[10];
1331
1332 if (len > JGIN_MAXLENGTH)
1333 {
1334 uint32 hashval;
1335
1336 hashval = DatumGetUInt32(hash_any((const unsigned char *) str, len));
1337 snprintf(hashbuf, sizeof(hashbuf), "%08x", hashval);
1338 str = hashbuf;
1339 len = 8;
1341 }
1342
1343 /*
1344 * Now build the text Datum. For simplicity we build a 4-byte-header
1345 * varlena text Datum here, but we expect it will get converted to short
1346 * header format when stored in the index.
1347 */
1348 item = (text *) palloc(VARHDRSZ + len + 1);
1349 SET_VARSIZE(item, VARHDRSZ + len + 1);
1350
1351 *VARDATA(item) = flag;
1352
1353 memcpy(VARDATA(item) + 1, str, len);
1354
1355 return PointerGetDatum(item);
1356}
1357
1358/*
1359 * Create a textual representation of a JsonbValue that will serve as a GIN
1360 * key in a jsonb_ops index. is_key is true if the JsonbValue is a key,
1361 * or if it is a string array element (since we pretend those are keys,
1362 * see jsonb.h).
1363 */
1364static Datum
1366{
1367 Datum item;
1368 char *cstr;
1369
1370 switch (scalarVal->type)
1371 {
1372 case jbvNull:
1373 Assert(!is_key);
1374 item = make_text_key(JGINFLAG_NULL, "", 0);
1375 break;
1376 case jbvBool:
1377 Assert(!is_key);
1379 scalarVal->val.boolean ? "t" : "f", 1);
1380 break;
1381 case jbvNumeric:
1382 Assert(!is_key);
1383
1384 /*
1385 * A normalized textual representation, free of trailing zeroes,
1386 * is required so that numerically equal values will produce equal
1387 * strings.
1388 *
1389 * It isn't ideal that numerics are stored in a relatively bulky
1390 * textual format. However, it's a notationally convenient way of
1391 * storing a "union" type in the GIN B-Tree, and indexing Jsonb
1392 * strings takes precedence.
1393 */
1394 cstr = numeric_normalize(scalarVal->val.numeric);
1396 pfree(cstr);
1397 break;
1398 case jbvString:
1400 scalarVal->val.string.val,
1401 scalarVal->val.string.len);
1402 break;
1403 default:
1404 elog(ERROR, "unrecognized jsonb scalar type: %d", scalarVal->type);
1405 item = 0; /* keep compiler quiet */
1406 break;
1407 }
1408
1409 return item;
1410}
#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)
char * numeric_normalize(Numeric num)
Definition numeric.c:1009
static int32 next
Definition blutils.c:225
#define VARHDRSZ
Definition c.h:711
#define Assert(condition)
Definition c.h:873
#define FLEXIBLE_ARRAY_MEMBER
Definition c.h:480
int32_t int32
Definition c.h:542
uint32_t uint32
Definition c.h:546
void * Pointer
Definition c.h:537
#define ERROR
Definition elog.h:39
#define elog(elevel,...)
Definition elog.h:226
#define palloc_object(type)
Definition fe_memutils.h:74
#define repalloc_array(pointer, type, count)
Definition fe_memutils.h:78
#define palloc_array(type, count)
Definition fe_memutils.h:76
#define palloc0_array(type, count)
Definition fe_memutils.h:77
#define PG_FREE_IF_COPY(ptr, n)
Definition fmgr.h:260
#define PG_GETARG_TEXT_PP(n)
Definition fmgr.h:310
#define DirectFunctionCall2(func, arg1, arg2)
Definition fmgr.h:686
#define PG_GETARG_POINTER(n)
Definition fmgr.h:277
#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:355
#define PG_GETARG_INT32(n)
Definition fmgr.h:269
#define PG_RETURN_POINTER(x)
Definition fmgr.h:363
#define PG_FUNCTION_ARGS
Definition fmgr.h:193
#define PG_RETURN_BOOL(x)
Definition fmgr.h:360
#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
const char * str
int j
Definition isn.c:78
int i
Definition isn.c:77
@ jbvNumeric
Definition jsonb.h:232
@ jbvBool
Definition jsonb.h:233
@ jbvNull
Definition jsonb.h:230
@ jbvString
Definition jsonb.h:231
#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:418
#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:221
static JsonPathGinNode * extract_jsp_bool_expr(JsonPathGinContext *cxt, JsonPathGinPath path, JsonPathItem *jsp, bool not)
Definition jsonb_gin.c:584
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:365
Datum gin_compare_jsonb(PG_FUNCTION_ARGS)
Definition jsonb_gin.c:204
static Datum make_text_key(char flag, const char *str, int len)
Definition jsonb_gin.c:1327
static List * jsonb_path_ops__extract_nodes(JsonPathGinContext *cxt, JsonPathGinPath path, JsonbValue *scalar, List *nodes)
Definition jsonb_gin.c:479
static GinTernaryValue execute_jsp_gin_node(JsonPathGinNode *node, void *check, bool ternary)
Definition jsonb_gin.c:800
static JsonPathGinNode * make_jsp_expr_node_args(JsonPathGinNodeType type, List *args)
Definition jsonb_gin.c:383
static JsonPathGinNode * extract_jsp_path_expr(JsonPathGinContext *cxt, JsonPathGinPath path, JsonPathItem *jsp, JsonbValue *scalar)
Definition jsonb_gin.c:565
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:279
static JsonPathGinNode * make_jsp_expr_node(JsonPathGinNodeType type, int nargs)
Definition jsonb_gin.c:371
static Datum make_scalar_key(const JsonbValue *scalarVal, bool is_key)
Definition jsonb_gin.c:1365
static List * jsonb_ops__extract_nodes(JsonPathGinContext *cxt, JsonPathGinPath path, JsonbValue *scalar, List *nodes)
Definition jsonb_gin.c:409
static Datum * extract_jsp_query(JsonPath *jp, StrategyNumber strat, bool pathOps, int32 *nentries, Pointer **extra_data)
Definition jsonb_gin.c:749
Datum gin_consistent_jsonb_path(PG_FUNCTION_ARGS)
Definition jsonb_gin.c:1221
Datum gin_extract_jsonb_query(PG_FUNCTION_ARGS)
Definition jsonb_gin.c:849
Datum gin_extract_jsonb(PG_FUNCTION_ARGS)
Definition jsonb_gin.c:230
static List * extract_jsp_path_expr_nodes(JsonPathGinContext *cxt, JsonPathGinPath path, JsonPathItem *jsp, JsonbValue *scalar)
Definition jsonb_gin.c:505
static void init_gin_entries(GinEntries *entries, int preallocated)
Definition jsonb_gin.c:163
static bool jsonb_path_ops__add_path_item(JsonPathGinPath *path, JsonPathItem *jsp)
Definition jsonb_gin.c:324
Datum gin_extract_jsonb_query_path(PG_FUNCTION_ARGS)
Definition jsonb_gin.c:1181
Datum gin_consistent_jsonb(PG_FUNCTION_ARGS)
Definition jsonb_gin.c:930
Datum gin_extract_jsonb_path(PG_FUNCTION_ARGS)
Definition jsonb_gin.c:1091
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:396
Datum gin_triconsistent_jsonb_path(PG_FUNCTION_ARGS)
Definition jsonb_gin.c:1273
static JsonPathGinNode * make_jsp_entry_node(Datum entry)
Definition jsonb_gin.c:354
static void emit_jsp_gin_entries(JsonPathGinNode *node, GinEntries *entries)
Definition jsonb_gin.c:720
Datum gin_triconsistent_jsonb(PG_FUNCTION_ARGS)
Definition jsonb_gin.c:1014
JsonbIterator * JsonbIteratorInit(JsonbContainer *container)
Definition jsonb_util.c:935
void JsonbHashScalarValue(const JsonbValue *scalarVal, uint32 *hash)
JsonbIteratorToken JsonbIteratorNext(JsonbIterator **it, JsonbValue *val, bool skipNested)
Definition jsonb_util.c:973
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 pfree(void *pointer)
Definition mcxt.c:1616
void * palloc(Size size)
Definition mcxt.c:1387
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:352
uint64_t Datum
Definition postgres.h:70
static Pointer DatumGetPointer(Datum X)
Definition postgres.h:342
static Datum UInt32GetDatum(uint32 X)
Definition postgres.h:242
static int fb(int x)
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
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
JsonPathItemType type
Definition jsonb_gin.c:121
struct JsonPathGinPathItem * parent
Definition jsonb_gin.c:119
enum jbvType type
Definition jsonb.h:257
char * val
Definition jsonb.h:266
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:706
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:1308
const char * type