We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e49135 commit bb07860Copy full SHA for bb07860
src/include/utils/jsonb_internals.h
@@ -121,6 +121,8 @@ typedef uint32 JEntry;
121
*/
122
#define JB_OFFSET_STRIDE 32
123
124
+typedef uint32 JsonbContainerHdr;
125
+
126
/*
127
* A jsonb array or object node, within a Jsonb Datum.
128
*
@@ -133,8 +135,8 @@ typedef uint32 JEntry;
133
135
134
136
typedef struct JsonbContainerHeader
137
{
- uint32 header; /* number of elements or key/value pairs, and
- * flags */
138
+ JsonbContainerHdr header; /* number of elements or key/value
139
+ * pairs, and flags */
140
JEntry children[FLEXIBLE_ARRAY_MEMBER];
141
142
/* the data for each child node follows. */
0 commit comments