diff options
| author | Vadim B. Mikheev | 1999-01-05 15:46:25 +0000 |
|---|---|---|
| committer | Vadim B. Mikheev | 1999-01-05 15:46:25 +0000 |
| commit | dfa23f5e41b98b8054439a4886621784798949f4 (patch) | |
| tree | 3df9e6a5fc1dea56e230bbe5e40c735bf65f5442 /src/include | |
| parent | b5626a2089f9eb244770f0463afb70a35242738a (diff) | |
SELECT FOR UPDATE syntax
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 0eddad75b6a..41730bf3463 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -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; |
