pgsql: Remove xloginsert.h from xlog.h

From: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove xloginsert.h from xlog.h
Date: 2022-01-30 15:26:18
Message-ID: E1nEC5q-0003gx-K3@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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(dot)rupireddyforpostgres(at)gmail(dot)com>
Discussion: https://postgr.es/m/CALj2ACVe-W+WM5P44N7eG9C2_FmaeM8Dq5aCnD3fHt0Ba=WR6w@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b3d7d6e462fce56ec68ca8dd5424f36f630c60f6

Modified Files
--------------
contrib/pg_surgery/heap_surgery.c | 1 +
contrib/pg_visibility/pg_visibility.c | 1 +
src/backend/access/gist/gist.c | 1 +
src/backend/access/hash/hash.c | 1 +
src/backend/access/hash/hashinsert.c | 1 +
src/backend/access/hash/hashovfl.c | 1 +
src/backend/access/hash/hashpage.c | 1 +
src/backend/access/heap/pruneheap.c | 1 +
src/backend/access/heap/vacuumlazy.c | 1 +
src/backend/access/heap/visibilitymap.c | 1 +
src/backend/access/nbtree/nbtdedup.c | 1 +
src/backend/access/nbtree/nbtree.c | 1 +
src/backend/access/transam/commit_ts.c | 1 +
src/backend/commands/tablecmds.c | 1 +
src/backend/replication/logical/message.c | 1 +
src/backend/replication/logical/origin.c | 1 +
src/backend/storage/buffer/bufmgr.c | 1 +
src/backend/storage/freespace/freespace.c | 1 +
src/backend/utils/cache/inval.c | 1 +
src/backend/utils/init/postinit.c | 1 +
src/include/access/xlog.h | 1 -
21 files changed, 20 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2022-01-30 18:33:34 pgsql: psql: improve tab-complete's handling of variant SQL names.
Previous Message Tom Lane 2022-01-29 16:41:43 pgsql: Fix failure to validate the result of select_common_type().