Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan2024-04-04 15:27:51 +0000
committerAndrew Dunstan2024-04-04 15:36:26 +0000
commit1b00fe30a67774e55c5fc776096a3c96f1a147d2 (patch)
tree57de2f4658efff82150d768f1fdf1cf280f08401 /src/common/jsonapi.c
parent6f4d63e989ffbdb44f5856a17fae5ae68c40327d (diff)
Fix warnings re typedef redefinition in ea7b4e9a2a and 3311ea86ed
Per gripe from Tom Lane and the buildfarm
Diffstat (limited to 'src/common/jsonapi.c')
-rw-r--r--src/common/jsonapi.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/common/jsonapi.c b/src/common/jsonapi.c
index 3d1bd37ac26..0bc3e426b20 100644
--- a/src/common/jsonapi.c
+++ b/src/common/jsonapi.c
@@ -78,8 +78,10 @@ typedef enum
* struct containing the 3 stacks used in non-recursive parsing,
* and the token and value for scalars that need to be preserved
* across calls.
+ *
+ * typedef appears in jsonapi.h
*/
-typedef struct JsonParserStack
+struct JsonParserStack
{
int stack_size;
char *prediction;
@@ -89,18 +91,20 @@ typedef struct JsonParserStack
bool *fnull;
JsonTokenType scalar_tok;
char *scalar_val;
-} JsonParserStack;
+};
/*
* struct containing state used when there is a possible partial token at the
* end of a json chunk when we are doing incremental parsing.
+ *
+ * typedef appears in jsonapi.h
*/
-typedef struct JsonIncrementalState
+struct JsonIncrementalState
{
bool is_last_chunk;
bool partial_completed;
StringInfoData partial_token;
-} JsonIncrementalState;
+};
/*
* constants and macros used in the nonrecursive parser