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 /contrib/pg_visibility/pg_visibility.c | |
parent | 8e2e0f75869e47b3a429b1251b00b3d6d5861028 (diff) |
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 'contrib/pg_visibility/pg_visibility.c')
-rw-r--r-- | contrib/pg_visibility/pg_visibility.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/pg_visibility/pg_visibility.c b/contrib/pg_visibility/pg_visibility.c index 44331c6f496..1853c354e3d 100644 --- a/contrib/pg_visibility/pg_visibility.c +++ b/contrib/pg_visibility/pg_visibility.c @@ -13,6 +13,7 @@ #include "access/heapam.h" #include "access/htup_details.h" #include "access/visibilitymap.h" +#include "access/xloginsert.h" #include "catalog/pg_type.h" #include "catalog/storage_xlog.h" #include "funcapi.h" |