8000 Back-patch CommandCounterIncrement fix. · tomdcc/postgres@1dfc377 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1dfc377

Browse files
committed
Back-patch CommandCounterIncrement fix.
1 parent b611c38 commit 1dfc377

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/backend/commands/user.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: user.c,v 1.53 2000/05/04 20:06:07 tgl Exp $
9+
* $Id: user.c,v 1.53.2.1 2000/10/19 03:58:47 tgl Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -610,6 +610,10 @@ DropUser(DropUserStmt *stmt)
610610
}
611611
heap_endscan(scan);
612612
heap_close(pg_rel, AccessExclusiveLock);
613+
/*
614+
* Make changes visible ...
615+
*/
616+
CommandCounterIncrement();
613617
}
614618

615619
/*

0 commit comments

Comments
 (0)
0