Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve bitpacking skip performance + better testing of FetchRow #10295

Merged
merged 10 commits into from
Jan 23, 2024
Prev Previous commit
Next Next commit
fix non deterministic test
  • Loading branch information
samansmink committed Jan 17, 2024
commit 718255f648d3b4bef60252033562891eb6fe6939
4 changes: 2 additions & 2 deletions test/sql/aggregate/aggregates/test_sem.test
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ select sem(v),sem(v2) from aggr

# Window Function
query I rowsort
select sem(v) over (partition by k) as v
from aggr order by v;
select sem(v) over (partition by k)
from aggr ORDER BY ALL;
----
0.000000
3.697550
Expand Down