Index: src/backend/catalog/aclchk.c =================================================================== RCS file: /usr/local/cvsroot/pgsql/src/backend/catalog/aclchk.c,v retrieving revision 1.116 diff -u -p -r1.116 aclchk.c --- src/backend/catalog/aclchk.c 26 Jul 2005 16:38:26 -0000 1.116 +++ src/backend/catalog/aclchk.c 28 Jul 2005 05:25:10 -0000 @@ -388,6 +388,8 @@ ExecuteGrantStmt_Relation(GrantStmt *stm pfree(new_acl); heap_close(relation, RowExclusiveLock); + + CommandCounterIncrement(); } } @@ -565,6 +567,8 @@ ExecuteGrantStmt_Database(GrantStmt *stm heap_endscan(scan); heap_close(relation, RowExclusiveLock); + + CommandCounterIncrement(); } } @@ -738,6 +742,8 @@ ExecuteGrantStmt_Function(GrantStmt *stm pfree(new_acl); heap_close(relation, RowExclusiveLock); + + CommandCounterIncrement(); } } @@ -920,6 +926,8 @@ ExecuteGrantStmt_Language(GrantStmt *stm pfree(new_acl); heap_close(relation, RowExclusiveLock); + + CommandCounterIncrement(); } } @@ -1093,6 +1101,8 @@ ExecuteGrantStmt_Namespace(GrantStmt *st pfree(new_acl); heap_close(relation, RowExclusiveLock); + + CommandCounterIncrement(); } } @@ -1269,6 +1279,8 @@ ExecuteGrantStmt_Tablespace(GrantStmt *s heap_endscan(scan); heap_close(relation, RowExclusiveLock); + + CommandCounterIncrement(); } }