diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-08-25 22:42:34 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-08-25 22:42:34 +0000 |
commit | e5536e77a50e2b6a5881a2ce9ef1c6debcb5d909 (patch) | |
tree | 20290f848c7d898e9be71e4aad86df84a02e8b99 /src/backend/optimizer/path/tidpath.c | |
parent | d320101b5b1cde0d0d6d4133f618dd374fc14bea (diff) | |
download | postgresql-e5536e77a50e2b6a5881a2ce9ef1c6debcb5d909.tar.gz postgresql-e5536e77a50e2b6a5881a2ce9ef1c6debcb5d909.zip |
Move exprType(), exprTypmod(), expression_tree_walker(), and related routines
into nodes/nodeFuncs, so as to reduce wanton cross-subsystem #includes inside
the backend. There's probably more that should be done along this line,
but this is a start anyway.
Diffstat (limited to 'src/backend/optimizer/path/tidpath.c')
-rw-r--r-- | src/backend/optimizer/path/tidpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/path/tidpath.c b/src/backend/optimizer/path/tidpath.c index 3def7c3738b..7eada8d9082 100644 --- a/src/backend/optimizer/path/tidpath.c +++ b/src/backend/optimizer/path/tidpath.c @@ -30,7 +30,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/path/tidpath.c,v 1.32 2008/05/12 00:00:49 alvherre Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/path/tidpath.c,v 1.33 2008/08/25 22:42:33 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -39,10 +39,10 @@ #include "access/sysattr.h" #include "catalog/pg_operator.h" #include "catalog/pg_type.h" +#include "nodes/nodeFuncs.h" #include "optimizer/clauses.h" #include "optimizer/pathnode.h" #include "optimizer/paths.h" -#include "parser/parse_expr.h" static bool IsTidEqualClause(OpExpr *node, int varno); |