Skip to content

Commit 962cbfc

Browse files
committed
update test
1 parent 7c86da5 commit 962cbfc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

datafusion/sqllogictest/test_files/aggregate.slt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4969,9 +4969,8 @@ select count(distinct column1), count(distinct column2) from dict_test group by
49694969
statement ok
49704970
drop table dict_test;
49714971

4972-
# duration_avg
4972+
# avg_duartion
49734973

4974-
# Create a table with different duration types
49754974
statement ok
49764975
create table d as values
49774976
(arrow_cast(1, 'Duration(Second)'), arrow_cast(2, 'Duration(Millisecond)'), arrow_cast(3, 'Duration(Microsecond)'), arrow_cast(4, 'Duration(Nanosecond)'), 1),
@@ -4984,8 +4983,9 @@ SELECT avg(column1), avg(column2), avg(column3), avg(column4) FROM d;
49844983

49854984
query ????I
49864985
SELECT avg(column1), avg(column2), avg(column3), avg(column4), column5 FROM d GROUP BY column5;
4986+
----
4987+
0 days 0 hours 0 mins 6 secs 0 days 0 hours 0 mins 0.012 secs 0 days 0 hours 0 mins 0.000018 secs 0 days 0 hours 0 mins 0.000000024 secs 1
49874988

4988-
# Cleanup
49894989
statement ok
49904990
drop table d;
49914991

0 commit comments

Comments
 (0)