|
6 | 6 | * |
7 | 7 | * |
8 | 8 | * IDENTIFICATION |
9 | | - * $Header: /cvsroot/pgsql/src/backend/parser/parser.c,v 1.6 1996/11/0805:57:33 momjian Exp $ |
| 9 | + * $Header: /cvsroot/pgsql/src/backend/parser/parser.c,v 1.7 1996/11/0820:45:42 momjian Exp $ |
10 | 10 | * |
11 | 11 | *------------------------------------------------------------------------- |
12 | 12 | */ |
|
19 | 19 |
|
20 | 20 | #include"postgres.h" |
21 | 21 | #include"parser/catalog_utils.h" |
| 22 | +#include"parser/gramparse.h" |
| 23 | +#include"parser/parse_query.h" |
22 | 24 | #include"nodes/pg_list.h" |
| 25 | +#include"nodes/execnodes.h" |
| 26 | +#include"nodes/makefuncs.h" |
| 27 | +#include"nodes/primnodes.h" |
| 28 | +#include"nodes/plannodes.h" |
| 29 | +#include"nodes/relation.h" |
| 30 | +#include"utils/builtins.h" |
23 | 31 | #include"utils/exc.h" |
24 | 32 | #include"utils/excid.h" |
| 33 | +#include"utils/lsyscache.h" |
25 | 34 | #include"utils/palloc.h" |
26 | 35 | #include"utils/syscache.h" |
27 | 36 | #include"catalog/pg_aggregate.h" |
28 | 37 | #include"catalog/pg_type.h" |
29 | | -#include"nodes/primnodes.h" |
30 | | -#include"nodes/plannodes.h" |
31 | | -#include"nodes/execnodes.h" |
32 | | -#include"nodes/relation.h" |
33 | | -#include"parser/parse_query.h" |
34 | | -#include"utils/builtins.h" |
35 | | -#include"utils/lsyscache.h" |
36 | 38 | #include"access/heapam.h" |
37 | | -#include"nodes/makefuncs.h" |
38 | 39 | #include"optimizer/clauses.h" |
39 | 40 |
|
40 | 41 | voidinit_io();/* from scan.l */ |
|