|
7 | 7 | * |
8 | 8 | * |
9 | 9 | * IDENTIFICATION |
10 | | - * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.29 1999/07/15 22:40:04 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.30 1999/07/16 05:23:21 momjian Exp $ |
11 | 11 | * |
12 | 12 | * NOTES |
13 | 13 | * These routines allow the parser/planner/executor to perform |
|
17 | 17 | * |
18 | 18 | *------------------------------------------------------------------------- |
19 | 19 | */ |
| 20 | +#include<string.h> |
20 | 21 | #include"postgres.h" |
21 | 22 |
|
22 | 23 | #include"access/heapam.h" |
23 | 24 | #include"catalog/catname.h" |
24 | | -#include"utils/catcache.h" |
25 | | -#include<string.h> |
26 | | - |
27 | | - |
28 | | -/* ---------------- |
29 | | - *hardwired attribute information comes from system catalog files. |
30 | | - * ---------------- |
31 | | - */ |
| 25 | +#include"catalog/pg_aggregate.h" |
32 | 26 | #include"catalog/pg_amop.h" |
33 | 27 | #include"catalog/pg_group.h" |
34 | 28 | #include"catalog/pg_index.h" |
35 | 29 | #include"catalog/pg_inherits.h" |
36 | 30 | #include"catalog/pg_language.h" |
| 31 | +#include"catalog/pg_listener.h" |
37 | 32 | #include"catalog/pg_opclass.h" |
38 | 33 | #include"catalog/pg_operator.h" |
39 | 34 | #include"catalog/pg_proc.h" |
40 | | -#include"catalog/pg_type.h" |
41 | 35 | #include"catalog/pg_rewrite.h" |
42 | | -#include"catalog/pg_aggregate.h" |
43 | 36 | #include"catalog/pg_shadow.h" |
44 | | -#include"catalog/pg_listener.h" |
| 37 | +#include"catalog/pg_type.h" |
| 38 | +#include"utils/catcache.h" |
45 | 39 |
|
46 | 40 | externboolAMI_OVERRIDE;/* XXX style */ |
47 | 41 |
|
|