summaryrefslogtreecommitdiff
path: root/src/include/nodes/parsenodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r--src/include/nodes/parsenodes.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 7ad3ddbf579..518abe42c10 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -1432,17 +1432,6 @@ typedef struct OnConflictClause
} OnConflictClause;
/*
- * WaitClause -
- * representation of WAIT FOR clause for BEGIN and START TRANSACTION.
- */
-typedef struct WaitClause
-{
- NodeTag type;
- char *lsn; /* LSN to wait for */
- int timeout; /* Number of milliseconds to limit wait time */
-} WaitClause;
-
-/*
* CommonTableExpr -
* representation of WITH list element
*
@@ -3071,7 +3060,6 @@ typedef struct TransactionStmt
char *savepoint_name; /* for savepoint commands */
char *gid; /* for two-phase-commit related commands */
bool chain; /* AND CHAIN option */
- Node *wait; /* WAIT FOR clause */
} TransactionStmt;
/* ----------------------