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

Patch to LOCK multiple tables in one LOCK command.

Neil Padgett
This commit is contained in:
Bruce Momjian
2001-08-10 14:30:15 +00:00
parent 49eb4f47c7
commit 77a69a2ed1
7 changed files with 53 additions and 34 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.138 2001/08/04 22:01:39 momjian Exp $
* $Id: parsenodes.h,v 1.139 2001/08/10 14:30:15 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;