diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-08-28 18:02:07 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-08-28 18:02:07 -0400 |
commit | 45326c5a11530cff5db99c6d4b393439cc901f26 (patch) | |
tree | fc6d5ba32796fce5eeca193d0b86ba8aa651f705 /src/backend/storage/buffer/localbuf.c | |
parent | 0a664ec27f3937c0ce428c07a41b6d8c7526ec57 (diff) | |
download | postgresql-45326c5a11530cff5db99c6d4b393439cc901f26.tar.gz postgresql-45326c5a11530cff5db99c6d4b393439cc901f26.zip |
Split resowner.h
This lets files that are mere users of ResourceOwner not automatically
include the headers for stuff that is managed by the resowner mechanism.
Diffstat (limited to 'src/backend/storage/buffer/localbuf.c')
-rw-r--r-- | src/backend/storage/buffer/localbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/buffer/localbuf.c b/src/backend/storage/buffer/localbuf.c index 46eeaf742d8..c18a04de71b 100644 --- a/src/backend/storage/buffer/localbuf.c +++ b/src/backend/storage/buffer/localbuf.c @@ -21,7 +21,7 @@ #include "storage/bufmgr.h" #include "utils/guc.h" #include "utils/memutils.h" -#include "utils/resowner.h" +#include "utils/resowner_private.h" /*#define LBDEBUG*/ |