summaryrefslogtreecommitdiff
path: root/src/include/commands
diff options
context:
space:
mode:
authorTom Lane2002-04-30 01:24:57 +0000
committerTom Lane2002-04-30 01:24:57 +0000
commit4c25a0655b9721af5c65922981c03926d856c6e4 (patch)
tree01a461fa88391005dec75b2c63064d42c61e0677 /src/include/commands
parent857661ba2eeb7ccde7dfc11659cb4c67748cb980 (diff)
Code review for ALTER TRIGGER RENAME patch: make better use of index,
don't scribble on tuple returned by table scan.
Diffstat (limited to 'src/include/commands')
-rw-r--r--src/include/commands/tablecmds.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/commands/tablecmds.h b/src/include/commands/tablecmds.h
index 1ce35eb1648..646ae45d240 100644
--- a/src/include/commands/tablecmds.h
+++ b/src/include/commands/tablecmds.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: tablecmds.h,v 1.3 2002/04/26 19:29:47 tgl Exp $
+ * $Id: tablecmds.h,v 1.4 2002/04/30 01:24:52 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -15,7 +15,6 @@
#define TABLECMDS_H
#include "nodes/parsenodes.h"
-#include "utils/inval.h"
extern void AlterTableAddColumn(Oid myrelid, bool inherits,
ColumnDef *colDef);