1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

setheapoverride() is history. Uses replaced with CommandCounterIncrement()

where necessary --- several of them didn't really need it, though.
tqual-checking macros simplified accordingly.
This commit is contained in:
Tom Lane
2000-01-17 23:57:48 +00:00
parent fb0627d972
commit 9e0b463473
13 changed files with 59 additions and 130 deletions

View File

@ -6,7 +6,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.48 1999/12/10 03:55:42 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.49 2000/01/17 23:57:41 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -98,9 +98,9 @@ gistbuild(Relation heap,
/* no locking is needed */
setheapoverride(true); /* so we can see the new pg_index tuple */
CommandCounterIncrement(); /* so we can see the new pg_index tuple */
initGISTstate(&giststate, index);
setheapoverride(false);
pred = predInfo->pred;
oldPred = predInfo->oldPred;