1 | /*------------------------------------------------------------------------- |
2 | * |
3 | * lockcmds.h |
4 | * prototypes for lockcmds.c. |
5 | * |
6 | * |
7 | * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group |
8 | * Portions Copyright (c) 1994, Regents of the University of California |
9 | * |
10 | * src/include/commands/lockcmds.h |
11 | * |
12 | *------------------------------------------------------------------------- |
13 | */ |
14 | #ifndef LOCKCMDS_H |
15 | #define LOCKCMDS_H |
16 | |
17 | #include "nodes/parsenodes.h" |
18 | |
19 | /* |
20 | * LOCK |
21 | */ |
22 | extern void LockTableCommand(LockStmt *lockstmt); |
23 | |
24 | #endif /* LOCKCMDS_H */ |
25 | |