mirror of
https://github.com/postgres/postgres.git
synced 2025-06-23 14:01:44 +03:00
De-anonymize the union in JsonbValue.
Needed for strict C89 compliance.
This commit is contained in:
@ -141,7 +141,7 @@ typedef struct
|
||||
|
||||
/*
|
||||
* JsonbValue: In-memory representation of Jsonb. This is a convenient
|
||||
* deserialized representation, that can easily support using the anonymous
|
||||
* deserialized representation, that can easily support using the "val"
|
||||
* union across underlying types during manipulation. The Jsonb on-disk
|
||||
* representation has various alignment considerations.
|
||||
*/
|
||||
@ -192,7 +192,7 @@ struct JsonbValue
|
||||
int len;
|
||||
char *data;
|
||||
} binary;
|
||||
};
|
||||
} val;
|
||||
};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user