Skip to content

Commit 56e366f

Browse files
author
Amit Kapila
committed
Fix ABI break introduced by commit 4daa140.
Move the newly defined enum value REORDER_BUFFER_CHANGE_INTERNAL_SPEC_ABORT at the end to avoid ABI break in the back branches. We need to back-patch this till v11 because before that it is already at the end. Reported-by: Tomas Vondra Backpatch-through: 11 Discussion: https://postgr.es/m/CAExHW5sPKF-Oovx_qZe4p5oM6Dvof7_P+XgsNAViug15Fm99jA@mail.gmail.com
1 parent 6fb377e commit 56e366f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/replication/reorderbuffer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ enum ReorderBufferChangeType
6262
REORDER_BUFFER_CHANGE_INTERNAL_TUPLECID,
6363
REORDER_BUFFER_CHANGE_INTERNAL_SPEC_INSERT,
6464
REORDER_BUFFER_CHANGE_INTERNAL_SPEC_CONFIRM,
65-
REORDER_BUFFER_CHANGE_INTERNAL_SPEC_ABORT,
66-
REORDER_BUFFER_CHANGE_TRUNCATE
65+
REORDER_BUFFER_CHANGE_TRUNCATE,
66+
REORDER_BUFFER_CHANGE_INTERNAL_SPEC_ABORT
6767
};
6868

6969
/* forward declaration */

0 commit comments

Comments
 (0)