diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-25 22:07:18 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-25 22:07:18 +0000 |
commit | 4a5b781d71b61887fd312112d75979f250bf723f (patch) | |
tree | 315803e512d9e978301311a92866a8b6f17a592d /src/backend/commands/recipe.c | |
parent | 3aff4011c735faa747ce94d20da6fd9f85144955 (diff) |
Break parser functions into smaller files, group together.
Diffstat (limited to 'src/backend/commands/recipe.c')
-rw-r--r-- | src/backend/commands/recipe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/recipe.c b/src/backend/commands/recipe.c index 9e5d2819e06..5b77b732a88 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.12 1997/11/21 18:09:51 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.13 1997/11/25 21:59:00 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -20,9 +20,9 @@ #include <catalog/pg_type.h> #include <commands/recipe.h> #include <libpq/libpq-be.h> +#include <parser/parse_node.h> #include <utils/builtins.h> #include <utils/relcache.h> /* for RelationNameGetRelation */ -#include <parser/parse_query.h> #include <rewrite/rewriteHandler.h> #include <rewrite/rewriteManip.h> #include <tcop/pquery.h> @@ -488,7 +488,7 @@ tg_replaceNumberedParam(Node *expression, * "result" attribute from the tee relation */ - isRel = (typeid_get_relid(p->paramtype) != 0); + isRel = (typeidTypeRelid(p->paramtype) != 0); if (isRel) { newVar = makeVar(rt_ind, |