diff options
author | Bruce Momjian <bruce@momjian.us> | 1996-10-30 02:02:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1996-10-30 02:02:41 +0000 |
commit | f59a46a8c81caad3c47a3595bd1712658b7c1f25 (patch) | |
tree | 1281813811c918f065492ce385a0947346f24a15 /src/backend/commands/recipe.c | |
parent | 1dfe4eaeb1c5e3f823e71e32c88ec4794fee1dde (diff) |
Parser Overhaul
Diffstat (limited to 'src/backend/commands/recipe.c')
-rw-r--r-- | src/backend/commands/recipe.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/backend/commands/recipe.c b/src/backend/commands/recipe.c index 97ac1582b62..0e14edfb78d 100644 --- a/src/backend/commands/recipe.c +++ b/src/backend/commands/recipe.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.2 1996/08/28 07:16:17 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.3 1996/10/30 02:01:45 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -690,10 +690,12 @@ tg_parseTeeNode(TgRecipe *r, same Tee. */ if (rt_ind == 0) { orig->rtable = lappend(orig->rtable, - makeRangeTableEntry(tt, + addRangeTableEntry(NULL, + tt, + tt, FALSE, - NULL, - tt)); + FALSE, + NULL)); rt_ind = length(orig->rtable); } |