Skip to content

Commit 2fef99a

Browse files
committed
Add new flag RPB_uk_updated in to RPB_CLEAR_FLAGS mask, as @dyemanov suggested
1 parent d3c4841 commit 2fef99a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jrd/req.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const USHORT RPB_just_deleted = 0x10; // record was just deleted by us
139139
const USHORT RPB_uk_updated = 0x20; // set by IDX_modify if it insert key into any primary or unique index
140140

141141
const USHORT RPB_UNDO_FLAGS = (RPB_undo_data | RPB_undo_read | RPB_undo_deleted);
142-
const USHORT RPB_CLEAR_FLAGS = (RPB_UNDO_FLAGS | RPB_just_deleted);
142+
const USHORT RPB_CLEAR_FLAGS = (RPB_UNDO_FLAGS | RPB_just_deleted | RPB_uk_updated);
143143

144144
// List of active blobs controlled by request
145145

0 commit comments

Comments
 (0)