mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-23 23:07:15 +08:00
Standardize replication origin naming to use "ReplOrigin".
The replication origin code was using inconsistent naming conventions. Functions were typically prefixed with 'replorigin', while typedefs and constants used "RepOrigin". This commit unifies the naming convention by renaming RepOriginId to ReplOriginId. Reviewed-by: Chao Li <li.evan.chao@gmail.com> Discussion: https://postgr.es/m/CAD21AoBDgm3hDqUZ+nqu=ViHmkCnJBuJyaxG_yvv27BAi2zBmQ@mail.gmail.com
This commit is contained in:
@ -769,13 +769,13 @@ extern bool RelationFindDeletedTupleInfoSeq(Relation rel,
|
||||
TupleTableSlot *searchslot,
|
||||
TransactionId oldestxmin,
|
||||
TransactionId *delete_xid,
|
||||
RepOriginId *delete_origin,
|
||||
ReplOriginId *delete_origin,
|
||||
TimestampTz *delete_time);
|
||||
extern bool RelationFindDeletedTupleInfoByIndex(Relation rel, Oid idxoid,
|
||||
TupleTableSlot *searchslot,
|
||||
TransactionId oldestxmin,
|
||||
TransactionId *delete_xid,
|
||||
RepOriginId *delete_origin,
|
||||
ReplOriginId *delete_origin,
|
||||
TimestampTz *delete_time);
|
||||
extern void ExecSimpleRelationInsert(ResultRelInfo *resultRelInfo,
|
||||
EState *estate, TupleTableSlot *slot);
|
||||
|
||||
Reference in New Issue
Block a user