You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test(sort-pushdown): cover DESC multi-row-group files with a shared min
Add Test 8b: a DESC scan over a file whose row groups share the same min
value (`[10,8,8,8]` → row groups `[10,8]` and `[8,8]`), listed out of order
on disk so the Inexact→Exact upgrade fires and SortExec is eliminated.
Without the fix this returns `8,8,10,8,...` (id=10 in third position): the
opener reorders row groups ASC-by-min then reverses, mis-ordering the two
min=8 row groups, and the eliminated SortExec no longer masks it. The test
asserts both the clean plan (no runtime reorder hints) and the correct
DESC result.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 commit comments