diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-10-12 00:07:15 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-10-12 00:07:15 +0000 |
commit | f9e6e27c873bcf50fdc20f5a28c5bede66d18f25 (patch) | |
tree | f6514d7b7c968982c25b00008c43289c6e2df1e1 /src/include/commands/command.h | |
parent | e98476eb032bd4dc32ca97212b660cad0bbadef4 (diff) | |
download | postgresql-f9e6e27c873bcf50fdc20f5a28c5bede66d18f25.tar.gz postgresql-f9e6e27c873bcf50fdc20f5a28c5bede66d18f25.zip |
Break transformCreateStmt() into multiple routines and make
transformAlterStmt() use these routines, instead of having lots of
duplicate (not to mention should-have-been-duplicate) code.
Adding a column with a CHECK constraint actually works now,
and the tests to reject unsupported DEFAULT and NOT NULL clauses
actually fire now. ALTER TABLE ADD PRIMARY KEY works, modulo
having to have created the column(s) NOT NULL already.
Diffstat (limited to 'src/include/commands/command.h')
-rw-r--r-- | src/include/commands/command.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/command.h b/src/include/commands/command.h index 7eb1a4fab84..78aa06a2dfb 100644 --- a/src/include/commands/command.h +++ b/src/include/commands/command.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: command.h,v 1.27 2001/05/07 00:43:25 tgl Exp $ + * $Id: command.h,v 1.28 2001/10/12 00:07:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -56,7 +56,7 @@ extern void AlterTableDropColumn(const char *relationName, int behavior); extern void AlterTableAddConstraint(char *relationName, - bool inh, Node *newConstraint); + bool inh, List *newConstraints); extern void AlterTableDropConstraint(const char *relationName, bool inh, const char *constrName, |