Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 17a1666

Browse files
committed
Remove AtStart_Cache() call in CommandCounterIncrement().
This call was present in the aboriginal code from Berkeley, and has never been touched; it may very well be that it was there to mask effects of bugs in other places and it may no longer be necessary. The removal has been foreseen in a code comment since 2007; this seems to be a good time to test this hypothesis.
1 parent c75e143 commit 17a1666

File tree

1 file changed

+0
-11
lines changed
  • src/backend/access/transam

1 file changed

+0
-11
lines changed

src/backend/access/transam/xact.c

-11
Original file line numberDiff line numberDiff line change
@@ -729,17 +729,6 @@ CommandCounterIncrement(void)
729729
*/
730730
AtCCI_LocalCache();
731731
}
732-
733-
/*
734-
* Make any other backends' catalog changes visible to me.
735-
*
736-
* XXX this is probably in the wrong place: CommandCounterIncrement should
737-
* be purely a local operation, most likely. However fooling with this
738-
* will affect asynchronous cross-backend interactions, which doesn't seem
739-
* like a wise thing to do in late beta, so save improving this for
740-
* another day - tgl 2007-11-30
741-
*/
742-
AtStart_Cache();
743732
}
744733

745734
/*

0 commit comments

Comments
 (0)