From 71dc300a375f4932693b064b161a400448c9bc2e Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 15 Apr 2002 05:22:04 +0000 Subject: 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 --- src/include/commands/rename.h | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/include/commands/rename.h (limited to 'src/include/commands/rename.h') diff --git a/src/include/commands/rename.h b/src/include/commands/rename.h deleted file mode 100644 index 48e1a1cbe0d..00000000000 --- a/src/include/commands/rename.h +++ /dev/null @@ -1,25 +0,0 @@ -/*------------------------------------------------------------------------- - * - * rename.h - * - * - * - * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group - * Portions Copyright (c) 1994, Regents of the University of California - * - * $Id: rename.h,v 1.16 2002/03/31 07:49:30 tgl Exp $ - * - *------------------------------------------------------------------------- - */ -#ifndef RENAME_H -#define RENAME_H - -extern void renameatt(Oid relid, - const char *oldattname, - const char *newattname, - bool recurse); - -extern void renamerel(Oid relid, - const char *newrelname); - -#endif /* RENAME_H */ -- cgit v1.2.3