PostgreSQL Source Code git master
lockcmds.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * lockcmds.h
4 * prototypes for lockcmds.c.
5 *
6 *
7 * Portions Copyright (c) 1996-2025, 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 */
22extern void LockTableCommand(LockStmt *lockstmt);
23
24#endif /* LOCKCMDS_H */
void LockTableCommand(LockStmt *lockstmt)
Definition: lockcmds.c:41