diff options
author | Tom Lane | 2000-03-15 07:02:56 +0000 |
---|---|---|
committer | Tom Lane | 2000-03-15 07:02:56 +0000 |
commit | 84b9507f7827239620337b8e140e7703e03a0865 (patch) | |
tree | 64c1e2e77221f7015713bf415a373d32dc83c1fc | |
parent | fe189063b8ec2d12b25aa04943f9bee09189d4bb (diff) |
Remove another incorrect UserAbortTransactionBlock() call.
-rw-r--r-- | src/backend/commands/user.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/commands/user.c b/src/backend/commands/user.c index 3e352be2fcc..63676e14e48 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.50 2000/02/15 18:17:33 tgl Exp $ + * $Id: user.c,v 1.51 2000/03/15 07:02:56 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1090,7 +1090,6 @@ DropGroup(DropGroupStmt *stmt) if (!gro_exists) { heap_close(pg_group_rel, AccessExclusiveLock); - UserAbortTransactionBlock(); elog(ERROR, "DROP GROUP: group \"%s\" does not exist", stmt->name); } |