|
7 | 7 | * |
8 | 8 | * |
9 | 9 | * IDENTIFICATION |
10 | | - * $Header: /cvsroot/pgsql/src/backend/parser/parse_clause.c,v 1.1 1997/11/25 22:05:35 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/parser/parse_clause.c,v 1.2 1997/11/26 01:11:16 momjian Exp $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
14 | 14 | #include<stdio.h> |
15 | 15 | #include<stdlib.h> |
16 | 16 | #include<string.h> |
| 17 | + |
17 | 18 | #include"postgres.h" |
18 | 19 | #include"access/heapam.h" |
| 20 | +#include"catalog/pg_type.h" |
19 | 21 | #include"parser/parse_clause.h" |
20 | 22 | #include"parser/parse_expr.h" |
21 | 23 | #include"parser/parse_node.h" |
22 | 24 | #include"parser/parse_oper.h" |
23 | 25 | #include"parser/parse_relation.h" |
24 | 26 | #include"parser/parse_target.h" |
25 | | -#include"catalog/pg_type.h" |
26 | | - |
27 | | -#ifdef0 |
28 | | -#include"nodes/nodes.h" |
29 | | -#include"nodes/params.h" |
30 | | -#include"nodes/primnodes.h" |
31 | | -#include"nodes/parsenodes.h" |
32 | | -#include"nodes/relation.h" |
33 | | -#include"parse.h"/* for AND, OR, etc. */ |
34 | | -#include"catalog/pg_aggregate.h" |
35 | | -#include"catalog/pg_proc.h" |
36 | | -#include"utils/elog.h" |
37 | | -#include"utils/builtins.h"/* namecmp(), textout() */ |
38 | | -#include"utils/lsyscache.h" |
39 | | -#include"utils/palloc.h" |
40 | | -#include"utils/mcxt.h" |
41 | | -#include"utils/syscache.h" |
42 | | -#include"utils/acl.h" |
43 | | -#include"nodes/makefuncs.h"/* for makeResdom(), etc. */ |
44 | | -#include"nodes/nodeFuncs.h" |
45 | | -#include"commands/sequence.h" |
46 | | - |
47 | | -#include"optimizer/clauses.h" |
48 | | - |
49 | | -#include"miscadmin.h" |
50 | | - |
51 | | -#include"port-protos.h"/* strdup() */ |
52 | | -#endif |
53 | 27 |
|
54 | 28 | /* |
55 | 29 | * parseFromClause - |
|