diff options
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 228cdca0f1b..fe003ded504 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -3538,9 +3538,12 @@ typedef struct TransactionStmt NodeTag type; TransactionStmtKind kind; /* see above */ List *options; /* for BEGIN/START commands */ - char *savepoint_name; /* for savepoint commands */ + /* for savepoint commands */ + char *savepoint_name pg_node_attr(query_jumble_ignore); char *gid; /* for two-phase-commit related commands */ bool chain; /* AND CHAIN option */ + /* token location, or -1 if unknown */ + int location pg_node_attr(query_jumble_location); } TransactionStmt; /* ---------------------- |