Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b91e6ed

Browse files
committed
Clean up after DROP IF EXISTS patch.
1 parent dd218ae commit b91e6ed

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/backend/nodes/copyfuncs.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Portions Copyright (c) 1994, Regents of the University of California
1616
*
1717
* IDENTIFICATION
18-
* $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.317 2005/11/14 23:54:12 tgl Exp $
18+
* $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.318 2005/11/20 23:24:12 tgl Exp $
1919
*
2020
*-------------------------------------------------------------------------
2121
*/
@@ -1897,6 +1897,7 @@ _copyDropStmt(DropStmt *from)
18971897
COPY_NODE_FIELD(objects);
18981898
COPY_SCALAR_FIELD(removeType);
18991899
COPY_SCALAR_FIELD(behavior);
1900+
COPY_SCALAR_FIELD(missing_ok);
19001901

19011902
return newnode;
19021903
}

src/backend/nodes/equalfuncs.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* Portions Copyright (c) 1994, Regents of the University of California
1919
*
2020
* IDENTIFICATION
21-
* $PostgreSQL: pgsql/src/backend/nodes/equalfuncs.c,v 1.254 2005/11/14 23:54:15 tgl Exp $
21+
* $PostgreSQL: pgsql/src/backend/nodes/equalfuncs.c,v 1.255 2005/11/20 23:24:12 tgl Exp $
2222
*
2323
*-------------------------------------------------------------------------
2424
*/
@@ -882,6 +882,7 @@ _equalDropStmt(DropStmt *a, DropStmt *b)
882882
COMPARE_NODE_FIELD(objects);
883883
COMPARE_SCALAR_FIELD(removeType);
884884
COMPARE_SCALAR_FIELD(behavior);
885+
COMPARE_SCALAR_FIELD(missing_ok);
885886

886887
return true;
887888
}

0 commit comments

Comments
 (0)