File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments