diff options
Diffstat (limited to 'src/include/utils/jsonb.h')
-rw-r--r-- | src/include/utils/jsonb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/jsonb.h b/src/include/utils/jsonb.h index a70cbd59400..00a6d4f9e0b 100644 --- a/src/include/utils/jsonb.h +++ b/src/include/utils/jsonb.h @@ -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; }; /* |