summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2000-10-19 03:58:47 +0000
committerTom Lane2000-10-19 03:58:47 +0000
commit1dfc377bf837940eb22de8bb4985b547b6f45e9b (patch)
treea611380c66060c9bf81f8832e98e0d2c68b0252a
parentb611c38282f196273d0d0a219511a6a73865f7b5 (diff)
Back-patch CommandCounterIncrement fix.
-rw-r--r--src/backend/commands/user.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/backend/commands/user.c b/src/backend/commands/user.c
index 2e01e6e202c..6f5c38ef489 100644
--- a/src/backend/commands/user.c
+++ b/src/backend/commands/user.c
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: user.c,v 1.53 2000/05/04 20:06:07 tgl Exp $
+ * $Id: user.c,v 1.53.2.1 2000/10/19 03:58:47 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -610,6 +610,10 @@ DropUser(DropUserStmt *stmt)
}
heap_endscan(scan);
heap_close(pg_rel, AccessExclusiveLock);
+ /*
+ * Make changes visible ...
+ */
+ CommandCounterIncrement();
}
/*