summaryrefslogtreecommitdiff
path: root/src/backend/commands
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-01-20 22:12:17 +0000
committerBruce Momjian <bruce@momjian.us>1998-01-20 22:12:17 +0000
commit7f31669beac8cacb828acbdbaf29925a6f0d6677 (patch)
tree475dde3edc07221f1fbfec88eb1a3e07470103f9 /src/backend/commands
parent412a5e653949b930d03056da73afca3c505a80f5 (diff)
Add Var.varlevelup to code. More parser cleanup.
Diffstat (limited to 'src/backend/commands')
-rw-r--r--src/backend/commands/recipe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/commands/recipe.c b/src/backend/commands/recipe.c
index bfdfe9d78fd..96808a6e311 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.17 1998/01/05 16:38:57 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.18 1998/01/20 22:10:53 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -494,6 +494,7 @@ tg_replaceNumberedParam(Node *expression,
newVar = makeVar(rt_ind,
0, /* the whole tuple */
TypeGet(teeRelName, &defined),
+ 0,
rt_ind,
0);
return (Node *) newVar;
@@ -503,6 +504,7 @@ tg_replaceNumberedParam(Node *expression,
1, /* just the first field,
* which is 'result' */
TypeGet(teeRelName, &defined),
+ 0,
rt_ind,
0);
return (Node *) newVar;