mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
have been divided according to the type of object manipulated - so ALTER TABLE code is in tablecmds.c, aggregate commands in aggregatecmds.c and so on. A few common support routines remain in define.c (prototypes in src/include/commands/defrem.h). No code has been changed except for includes to reflect the new files. The prototypes for aggregatecmds.c, functioncmds.c, operatorcmds.c, and typecmds.c remain in src/include/commands/defrem.h. From John Gray <jgray@azuli.co.uk>
24 lines
578 B
C
24 lines
578 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* lockcmds.h
|
|
* prototypes for lockcmds.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: lockcmds.h,v 1.1 2002/04/15 05:22:03 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef LOCKCMDS_H
|
|
#define LOCKCMDS_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
/*
|
|
* LOCK
|
|
*/
|
|
extern void LockTableCommand(LockStmt *lockstmt);
|
|
|
|
#endif /* LOCKCMDS_H */
|