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 fcf30ec commit acee6c2Copy full SHA for acee6c2
src/include/utils/jsonb.h
@@ -228,7 +228,7 @@ typedef struct
228
#define JB_ROOT_IS_ARRAY(jbp_) ((*(uint32 *) VARDATA(jbp_) & JB_FARRAY) != 0)
229
230
231
-enum jbvType
+typedef enum jbvType
232
{
233
/* Scalar types */
234
jbvNull = 0x0,
@@ -240,7 +240,7 @@ enum jbvType
240
jbvObject,
241
/* Binary (i.e. struct Jsonb) jbvArray/jbvObject */
242
jbvBinary
243
-};
+} JsonbValueType;
244
245
/*
246
* JsonbValue: In-memory representation of Jsonb. This is a convenient
0 commit comments