diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2022-01-30 12:25:24 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2022-01-30 12:25:24 -0300 |
commit | b3d7d6e462fce56ec68ca8dd5424f36f630c60f6 (patch) | |
tree | e27f5e6ce59e93b2312751bd8e0cafc4cc59c3f8 /src/backend/access/gist/gist.c | |
parent | 8e2e0f75869e47b3a429b1251b00b3d6d5861028 (diff) | |
download | postgresql-b3d7d6e462fce56ec68ca8dd5424f36f630c60f6.tar.gz postgresql-b3d7d6e462fce56ec68ca8dd5424f36f630c60f6.zip |
Remove xloginsert.h from xlog.h
xlog.h is directly and indirectly #included in a lot of places. With
this change, xloginsert.h is no longer unnecessarily included in the
large number of them that don't need it.
Author: Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>
Discussion: https://postgr.es/m/CALj2ACVe-W+WM5P44N7eG9C2_FmaeM8Dq5aCnD3fHt0Ba=WR6w@mail.gmail.com
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index c3cdfca9a23..8c6c744ab74 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -16,6 +16,7 @@ #include "access/gist_private.h" #include "access/gistscan.h" +#include "access/xloginsert.h" #include "catalog/pg_collation.h" #include "commands/vacuum.h" #include "miscadmin.h" |