We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aed337 commit 99c23aeCopy full SHA for 99c23ae
src/include/utils/jsonb.h
@@ -233,7 +233,7 @@ typedef struct
233
#define JB_ROOT_IS_ARRAY(jbp_) ((*(uint32 *) VARDATA(jbp_) & JB_FARRAY) != 0)
234
235
236
-enum jbvType
+typedef enum jbvType
237
{
238
/* Scalar types */
239
jbvNull = 0x0,
@@ -253,7 +253,7 @@ enum jbvType
253
* into JSON strings when outputted to json/jsonb.
254
*/
255
jbvDatetime = 0x20,
256
-};
+} JsonbValueType;
257
258
/*
259
* JsonbValue: In-memory representation of Jsonb. This is a convenient
0 commit comments