|
18 | 18 | * Portions Copyright (c) 1994, Regents of the University of California
|
19 | 19 | *
|
20 | 20 | * IDENTIFICATION
|
21 |
| - * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.185 2003/02/09 06:56:27 tgl Exp $ |
| 21 | + * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.186 2003/02/10 04:44:45 tgl Exp $ |
22 | 22 | *
|
23 | 23 | *-------------------------------------------------------------------------
|
24 | 24 | */
|
@@ -730,7 +730,7 @@ _equalCreateStmt(CreateStmt *a, CreateStmt *b)
|
730 | 730 | static bool
|
731 | 731 | _equalDefineStmt(DefineStmt *a, DefineStmt *b)
|
732 | 732 | {
|
733 |
| - COMPARE_SCALAR_FIELD(defType); |
| 733 | + COMPARE_SCALAR_FIELD(kind); |
734 | 734 | COMPARE_NODE_FIELD(defnames);
|
735 | 735 | COMPARE_NODE_FIELD(definition);
|
736 | 736 |
|
@@ -898,7 +898,7 @@ _equalUnlistenStmt(UnlistenStmt *a, UnlistenStmt *b)
|
898 | 898 | static bool
|
899 | 899 | _equalTransactionStmt(TransactionStmt *a, TransactionStmt *b)
|
900 | 900 | {
|
901 |
| - COMPARE_SCALAR_FIELD(command); |
| 901 | + COMPARE_SCALAR_FIELD(kind); |
902 | 902 | COMPARE_NODE_FIELD(options);
|
903 | 903 |
|
904 | 904 | return true;
|
@@ -1187,7 +1187,7 @@ _equalDropGroupStmt(DropGroupStmt *a, DropGroupStmt *b)
|
1187 | 1187 | static bool
|
1188 | 1188 | _equalReindexStmt(ReindexStmt *a, ReindexStmt *b)
|
1189 | 1189 | {
|
1190 |
| - COMPARE_SCALAR_FIELD(reindexType); |
| 1190 | + COMPARE_SCALAR_FIELD(kind); |
1191 | 1191 | COMPARE_NODE_FIELD(relation);
|
1192 | 1192 | COMPARE_STRING_FIELD(name);
|
1193 | 1193 | COMPARE_SCALAR_FIELD(force);
|
@@ -1276,7 +1276,7 @@ _equalDeallocateStmt(DeallocateStmt *a, DeallocateStmt *b)
|
1276 | 1276 | static bool
|
1277 | 1277 | _equalAExpr(A_Expr *a, A_Expr *b)
|
1278 | 1278 | {
|
1279 |
| - COMPARE_SCALAR_FIELD(oper); |
| 1279 | + COMPARE_SCALAR_FIELD(kind); |
1280 | 1280 | COMPARE_NODE_FIELD(name);
|
1281 | 1281 | COMPARE_NODE_FIELD(lexpr);
|
1282 | 1282 | COMPARE_NODE_FIELD(rexpr);
|
|
0 commit comments