Skip to content

Commit dabfb93

Browse files
authored
fix: use logical OR instead of bitwise OR in conflict resolver (#6492)
1 parent 0a0d53b commit dabfb93

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rust/lance/src/io/commit/conflict_resolver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ impl<'a> TransactionRebase<'a> {
10951095
.transaction
10961096
.operation
10971097
.upsert_key_conflict(&other_transaction.operation)
1098-
| self
1098+
|| self
10991099
.transaction
11001100
.operation
11011101
.modifies_same_metadata(&other_transaction.operation)

0 commit comments

Comments
 (0)