summaryrefslogtreecommitdiff
path: root/src/backend/nodes/equalfuncs.c
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2006-02-04 19:06:47 +0000
committerAndrew Dunstan <andrew@dunslane.net>2006-02-04 19:06:47 +0000
commitf8b54fe6ed7a2eae575d365091d136b4a4068316 (patch)
tree4f3eedce55525759add7704eef65ea66c69989d2 /src/backend/nodes/equalfuncs.c
parent3fa9c416ed14f1d46567fdcf99c8d639034dbeec (diff)
downloadpostgresql-f8b54fe6ed7a2eae575d365091d136b4a4068316.tar.gz
DROP IF EXISTS for ROLE/USER/GROUP
Diffstat (limited to 'src/backend/nodes/equalfuncs.c')
-rw-r--r--src/backend/nodes/equalfuncs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/nodes/equalfuncs.c b/src/backend/nodes/equalfuncs.c
index e7a9ced0ed..a9fdc95f6b 100644
--- a/src/backend/nodes/equalfuncs.c
+++ b/src/backend/nodes/equalfuncs.c
@@ -18,7 +18,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/nodes/equalfuncs.c,v 1.261 2006/01/31 21:39:23 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/nodes/equalfuncs.c,v 1.262 2006/02/04 19:06:46 adunstan Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1398,6 +1398,7 @@ static bool
_equalDropRoleStmt(DropRoleStmt *a, DropRoleStmt *b)
{
COMPARE_NODE_FIELD(roles);
+ COMPARE_SCALAR_FIELD(missing_ok);
return true;
}