1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

SELECT FOR UPDATE syntax

This commit is contained in:
Vadim B. Mikheev
1999-01-05 15:46:25 +00:00
parent b5626a2089
commit dfa23f5e41
3 changed files with 4086 additions and 4068 deletions

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.64 1998/12/21 12:50:29 wieck Exp $
* $Id: parsenodes.h,v 1.65 1999/01/05 15:45:49 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -653,6 +653,7 @@ typedef struct SelectStmt
bool unionall; /* union without unique sort */
Node *limitOffset; /* # of result tuples to skip */
Node *limitCount; /* # of result tuples to return */
List *forUpdate; /* FOR UPDATE clause */
} SelectStmt;