pgsql: Move enum RecoveryTargetAction to xlogrecovery.h

From: Álvaro Herrera <alvherre(at)kurilemu(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move enum RecoveryTargetAction to xlogrecovery.h
Date: 2025-07-23 09:07:54
Message-ID: E1ueVS6-000Kr6-1L@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move enum RecoveryTargetAction to xlogrecovery.h

Commit 70e81861fadd split out xlogrecovery.c/h and moved some enums
related to recovery targets to xlogrecovery.h. However, it seems that
the enum RecoveryTargetAction was inadvertently left out by that commit.
This commit moves it to xlogrecovery.h for consistency.

Author: Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>
Discussion: https://postgr.es/m/20240904.173013.1132986940678039655.horikyota.ntt@gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/196063d6761d2c8d6f78cc03afad08efc95a0708

Modified Files
--------------
src/include/access/xlog_internal.h | 10 ----------
src/include/access/xlogrecovery.h | 10 ++++++++++
2 files changed, 10 insertions(+), 10 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Nathan Bossart 2025-07-23 15:30:23 pgsql: Use PqMsg_* macros in walsender.c
Previous Message Amit Kapila 2025-07-23 03:35:06 pgsql: Preserve conflict-relevant data during logical replication.