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

Add LOCK A,B,C functionality as LOCK A;LOCK B;LOCK C; as agreed.

Neil Padgett
This commit is contained in:
Bruce Momjian
2001-08-04 19:39:00 +00:00
parent 0bfc64b387
commit 16365ac75b
7 changed files with 117 additions and 32 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.136 2001/07/16 19:07:40 momjian Exp $
* $Id: parsenodes.h,v 1.137 2001/08/04 19:38:59 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -760,7 +760,7 @@ typedef struct VariableResetStmt
typedef struct LockStmt
{
NodeTag type;
char *relname; /* relation to lock */
List *rellist; /* relations to lock */
int mode; /* lock mode */
} LockStmt;