mirror of
https://github.com/postgres/postgres.git
synced 2025-08-24 09:27:52 +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:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/_deadcode/Attic/recipe.c,v 1.8 2000/01/10 17:14:33 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/_deadcode/Attic/recipe.c,v 1.9 2000/01/17 23:57:44 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -211,9 +211,10 @@ beginRecipe(RecipeStmt *stmt)
|
||||
/*
|
||||
* before we plan, we want to see all the changes we did, during
|
||||
* the rewrite phase, such as creating the tee tables,
|
||||
* setheapoverride() allows us to see the changes
|
||||
* CommandCounterIncrement() allows us to see the changes
|
||||
*/
|
||||
setheapoverride(true);
|
||||
CommandCounterIncrement();
|
||||
|
||||
plan = planner(parsetree);
|
||||
|
||||
/* ----------------------------------------------------------
|
||||
@@ -265,8 +266,6 @@ beginRecipe(RecipeStmt *stmt)
|
||||
|
||||
} /* if (teeInfo) */
|
||||
|
||||
setheapoverride(false);
|
||||
|
||||
/* define a portal for this viewer input */
|
||||
/* for now, eyes can only have one input */
|
||||
snprintf(portalName, 1024, "%s%d", e->nodeName, 0);
|
||||
|
Reference in New Issue
Block a user