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 15
15
* Portions Copyright (c) 1994, Regents of the University of California
16
16
*
17
17
* 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 $
19
19
*
20
20
*-------------------------------------------------------------------------
21
21
*/
@@ -1897,6 +1897,7 @@ _copyDropStmt(DropStmt *from)
1897
1897
COPY_NODE_FIELD (objects );
1898
1898
COPY_SCALAR_FIELD (removeType );
1899
1899
COPY_SCALAR_FIELD (behavior );
1900
+ COPY_SCALAR_FIELD (missing_ok );
1900
1901
1901
1902
return newnode ;
1902
1903
}
Original file line number Diff line number Diff line change 18
18
* Portions Copyright (c) 1994, Regents of the University of California
19
19
*
20
20
* 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 $
22
22
*
23
23
*-------------------------------------------------------------------------
24
24
*/
@@ -882,6 +882,7 @@ _equalDropStmt(DropStmt *a, DropStmt *b)
882
882
COMPARE_NODE_FIELD (objects );
883
883
COMPARE_SCALAR_FIELD (removeType );
884
884
COMPARE_SCALAR_FIELD (behavior );
885
+ COMPARE_SCALAR_FIELD (missing_ok );
885
886
886
887
return true;
887
888
}
You can’t perform that action at this time.
0 commit comments