-
Type:
Improvement
-
Resolution: Unresolved
-
Priority:
Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: Internal Code
-
Storage Engines
-
StorEng - Defined Pipeline
-
1
-
None
-
3
-
None
-
None
-
None
-
None
-
None
-
None
Redundant test
By the time the program execution reaches the test of this condition there is only one possible outcome for the test. The code at the destination of this branch is not dead, either because this condition is always true or because there is at least one other branch that reaches it. Test always evaluates the same
src/third_party/wiredtiger/src/txn/txn.c:1544: DEADCODE 138288 At condition "b_has_sortable_key", the value of "b_has_sortable_key" must be equal to 0.
src/third_party/wiredtiger/src/txn/txn.c:1538: DEADCODE 138288 Condition "b_has_sortable_key", taking false branch. Now the value of "b_has_sortable_key" is equal to 0.
src/third_party/wiredtiger/src/txn/txn.c:1544: DEADCODE 138288 The condition "!b_has_sortable_key" must be true.