diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-11-28 12:35:01 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-11-28 13:01:15 -0300 |
commit | 1577b46b7c81e490cf5c8f0e90d0e5d0c09b5414 (patch) | |
tree | 6b7b73eea52d8beb905c8c4b592235cba4c41565 /src/backend/access/transam/rmgr.c | |
parent | dd7353dde82ad451bf681b37175be128995330fe (diff) | |
download | postgresql-1577b46b7c81e490cf5c8f0e90d0e5d0c09b5414.tar.gz postgresql-1577b46b7c81e490cf5c8f0e90d0e5d0c09b5414.zip |
Split out rmgr rm_desc functions into their own files
This is necessary (but not sufficient) to have them compilable outside
of a backend environment.
Diffstat (limited to 'src/backend/access/transam/rmgr.c')
-rw-r--r-- | src/backend/access/transam/rmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/rmgr.c b/src/backend/access/transam/rmgr.c index aafd73fbd5b..cc210a7e59c 100644 --- a/src/backend/access/transam/rmgr.c +++ b/src/backend/access/transam/rmgr.c @@ -17,7 +17,7 @@ #include "access/spgist.h" #include "access/xact.h" #include "access/xlog_internal.h" -#include "catalog/storage.h" +#include "catalog/storage_xlog.h" #include "commands/dbcommands.h" #include "commands/sequence.h" #include "commands/tablespace.h" |