aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/primnodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/nodes/primnodes.h')
-rw-r--r--src/include/nodes/primnodes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h
index 66e179c4356..51505eee85d 100644
--- a/src/include/nodes/primnodes.h
+++ b/src/include/nodes/primnodes.h
@@ -1387,14 +1387,14 @@ typedef enum JsonValueType
/*
* JsonIsPredicate -
- * untransformed representation of IS JSON predicate
+ * representation of IS JSON predicate
*/
typedef struct JsonIsPredicate
{
NodeTag type;
- Node *expr; /* untransformed expression */
+ Node *expr; /* subject expression */
JsonFormat *format; /* FORMAT clause, if specified */
- JsonValueType value_type; /* JSON item type */
+ JsonValueType item_type; /* JSON item type */
bool unique_keys; /* check key uniqueness? */
int location; /* token location, or -1 if unknown */
} JsonIsPredicate;