-
Type:
Bug
-
Resolution: Done
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: Page deltas
-
Storage Engines - Transactions
-
SE Transactions - 2025-12-05
-
1
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/btree/bt_page.c:444: DEADCODE 177544 Condition "internal_page", taking true branch. Now the value of "internal_page" is equal to 1.
/src/btree/bt_page.c:429: DEADCODE 177544 At condition "internal_page", the value of "internal_page" must be equal to 1.
/src/btree/bt_page.c:429: DEADCODE 177544 Condition "internal_page", taking true branch. Now the value of "internal_page" is equal to 1.
/src/btree/bt_page.c:316: DEADCODE 177544 Assigning: "internal_page" = "true".
/src/btree/bt_page.c:429: DEADCODE 177544 The condition "internal_page" must be true.
- is fixed by
-
WT-15620 Remove old code for reconstructing leaf and internal page deltas
-
- Open
-