diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-15 05:22:04 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-15 05:22:04 +0000 |
commit | 71dc300a375f4932693b064b161a400448c9bc2e (patch) | |
tree | ab20c095125a6eab33644befd187f936cf4fd093 /src/include/commands/creatinh.h | |
parent | ab1ead6b9761531787c78e0c80daf98b421ac06f (diff) |
The contents of command.c, creatinh.c, define.c, remove.c and rename.c
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>
Diffstat (limited to 'src/include/commands/creatinh.h')
-rw-r--r-- | src/include/commands/creatinh.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/include/commands/creatinh.h b/src/include/commands/creatinh.h deleted file mode 100644 index fe0f2bc3512..00000000000 --- a/src/include/commands/creatinh.h +++ /dev/null @@ -1,23 +0,0 @@ -/*------------------------------------------------------------------------- - * - * creatinh.h - * prototypes for creatinh.c. - * - * - * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group - * Portions Copyright (c) 1994, Regents of the University of California - * - * $Id: creatinh.h,v 1.20 2002/03/29 19:06:22 tgl Exp $ - * - *------------------------------------------------------------------------- - */ -#ifndef CREATINH_H -#define CREATINH_H - -#include "nodes/parsenodes.h" - -extern Oid DefineRelation(CreateStmt *stmt, char relkind); -extern void RemoveRelation(const RangeVar *relation); -extern void TruncateRelation(const RangeVar *relation); - -#endif /* CREATINH_H */ |