projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b611c38
)
Back-patch CommandCounterIncrement fix.
author
Tom Lane
<
[email protected]
>
Thu, 19 Oct 2000 03:58:47 +0000
(
03:58
+0000)
committer
Tom Lane
<
[email protected]
>
Thu, 19 Oct 2000 03:58:47 +0000
(
03:58
+0000)
src/backend/commands/user.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/commands/user.c
b/src/backend/commands/user.c
index 2e01e6e202c05475af3d3d99947ff27d45030716..6f5c38ef4894ab3b5c5cce5511626ade92188457 100644
(file)
--- 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:0
7 tgl Exp $
+ * $Id: user.c,v 1.53
.2.1 2000/10/19 03:58:4
7 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@
-610,6
+610,10
@@
DropUser(DropUserStmt *stmt)
}
heap_endscan(scan);
heap_close(pg_rel, AccessExclusiveLock);
+ /*
+ * Make changes visible ...
+ */
+ CommandCounterIncrement();
}
/*