1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Clean up after DROP IF EXISTS patch.

This commit is contained in:
Tom Lane
2005-11-20 23:24:12 +00:00
parent dd218ae7b0
commit b91e6ed93e
2 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.317 2005/11/14 23:54:12 tgl Exp $
* $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.318 2005/11/20 23:24:12 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -1897,6 +1897,7 @@ _copyDropStmt(DropStmt *from)
COPY_NODE_FIELD(objects);
COPY_SCALAR_FIELD(removeType);
COPY_SCALAR_FIELD(behavior);
COPY_SCALAR_FIELD(missing_ok);
return newnode;
}