-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major - P3
-
Affects Version/s: None
-
Component/s: Test Python
-
None
-
Storage Engines, Storage Engines - Foundations
-
121.275
-
None
-
None
test_truncate24 has both row-store (key_format='i') and column-store (key_format='r') scenarios, but does not skip the column-store variant when run under the disagg hook. Disaggregated storage does not support column-store (hook_disagg leaves column-store tables non-layered), and running the var.* scenarios under disagg can produce slow tree walks / spurious failures.
Follow the canonical pattern used in test_stat10.py:
def test_truncate24(self):
if self.runningHook('disagg') and self.key_format == 'r':
self.skipTest("disagg does not support column-store")
...
- related to
-
WT-17593 failed: test_truncate24 unexpected standard output on amazon2023-arm64-tsan [wiredtiger @ 7e770f53]
-
- Closed
-