Skip to content

Commit

Permalink
Add count test
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Oct 20, 2023
1 parent ec64571 commit 0c63ca6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions datafusion/sqllogictest/test_files/decimal.slt
Original file line number Diff line number Diff line change
Expand Up @@ -711,5 +711,14 @@ select arrow_typeof(median(c1)), median(c1) from decimal256_simple;
----
Decimal256(50, 6) 0.00004

query IR
select count(*),c1 from decimal256_simple group by c1 order by c1;
----
1 0.00001
2 0.00002
3 0.00003
4 0.00004
5 0.00005

statement ok
drop table decimal256_simple;

0 comments on commit 0c63ca6

Please sign in to comment.