Commit b91e6ed9 authored by Tom Lane's avatar Tom Lane

Clean up after DROP IF EXISTS patch.

parent dd218ae7
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * 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) ...@@ -1897,6 +1897,7 @@ _copyDropStmt(DropStmt *from)
COPY_NODE_FIELD(objects); COPY_NODE_FIELD(objects);
COPY_SCALAR_FIELD(removeType); COPY_SCALAR_FIELD(removeType);
COPY_SCALAR_FIELD(behavior); COPY_SCALAR_FIELD(behavior);
COPY_SCALAR_FIELD(missing_ok);
return newnode; return newnode;
} }
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/nodes/equalfuncs.c,v 1.254 2005/11/14 23:54:15 tgl Exp $ * $PostgreSQL: pgsql/src/backend/nodes/equalfuncs.c,v 1.255 2005/11/20 23:24:12 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -882,6 +882,7 @@ _equalDropStmt(DropStmt *a, DropStmt *b) ...@@ -882,6 +882,7 @@ _equalDropStmt(DropStmt *a, DropStmt *b)
COMPARE_NODE_FIELD(objects); COMPARE_NODE_FIELD(objects);
COMPARE_SCALAR_FIELD(removeType); COMPARE_SCALAR_FIELD(removeType);
COMPARE_SCALAR_FIELD(behavior); COMPARE_SCALAR_FIELD(behavior);
COMPARE_SCALAR_FIELD(missing_ok);
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment