1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-25 13:17:41 +03:00

Fix ALTER TABLE ... ADD COLUMN for inheritance cases.

Alvaro Herrera
This commit is contained in:
Bruce Momjian
2002-10-21 20:31:52 +00:00
parent b47c3598d4
commit e49c1a9234
4 changed files with 42 additions and 17 deletions

View File

@@ -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.7 2002/09/04 20:31:42 momjian Exp $
* $Id: tablecmds.h,v 1.8 2002/10/21 20:31:52 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,8 +16,7 @@
#include "nodes/parsenodes.h"
extern void AlterTableAddColumn(Oid myrelid, bool recurse, bool recursing,
ColumnDef *colDef);
extern void AlterTableAddColumn(Oid myrelid, bool recurse, ColumnDef *colDef);
extern void AlterTableAlterColumnDropNotNull(Oid myrelid, bool recurse,
const char *colName);