diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-08-28 18:26:24 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-08-28 18:36:39 -0400 |
commit | fda0594fc2f4c98ee50ea02fa196ca51db81ea70 (patch) | |
tree | 9a35d44019af7d943a2f93140961d93c23a95b72 /src/backend/utils/cache/syscache.c | |
parent | 45326c5a11530cff5db99c6d4b393439cc901f26 (diff) | |
download | postgresql-fda0594fc2f4c98ee50ea02fa196ca51db81ea70.tar.gz postgresql-fda0594fc2f4c98ee50ea02fa196ca51db81ea70.zip |
remove catcache.h from syscache.h
Instead, place a forward struct declaration for struct catclist in
syscache.h. This reduces header proliferation somewhat.
Diffstat (limited to 'src/backend/utils/cache/syscache.c')
-rw-r--r-- | src/backend/utils/cache/syscache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/utils/cache/syscache.c b/src/backend/utils/cache/syscache.c index bb754e3d03b..1967895873b 100644 --- a/src/backend/utils/cache/syscache.c +++ b/src/backend/utils/cache/syscache.c @@ -56,6 +56,7 @@ #include "catalog/pg_type.h" #include "catalog/pg_user_mapping.h" #include "utils/rel.h" +#include "utils/catcache.h" #include "utils/syscache.h" |