diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2009-07-20 02:42:28 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2009-07-20 02:42:28 +0000 |
commit | e73131a16af9fc175c889b9b7673975c7edf6e38 (patch) | |
tree | 690ed2c0103c13b9b4c56fb59e2e8d1a23622fd6 /src/backend/nodes/copyfuncs.c | |
parent | 31d1f2330277a91f59fe050cc85ced25ee55f95d (diff) | |
download | postgresql-e73131a16af9fc175c889b9b7673975c7edf6e38.tar.gz postgresql-e73131a16af9fc175c889b9b7673975c7edf6e38.zip |
DROP IF EXISTS for columns and constraints. Andres Freund.
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index ca920d11f79..0111ac4a9d9 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -15,7 +15,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.433 2009/07/16 06:33:42 petere Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.434 2009/07/20 02:42:27 adunstan Exp $ * *------------------------------------------------------------------------- */ @@ -2272,6 +2272,7 @@ _copyAlterTableCmd(AlterTableCmd *from) COPY_NODE_FIELD(def); COPY_NODE_FIELD(transform); COPY_SCALAR_FIELD(behavior); + COPY_SCALAR_FIELD(missing_ok); return newnode; } |