Skip to content

Commit a8e031f

Browse files
committed
fix: add order by for integration test case
1 parent 50f8a72 commit a8e031f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration_tests/cases/common/function/aggregate.result

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ COUNT(02_function_aggregate_table1.arch),
9191
Int64(4),
9292

9393

94-
SELECT distinct(`arch`) FROM `02_function_aggregate_table1`;
94+
SELECT distinct(`arch`) FROM `02_function_aggregate_table1` ORDER BY `arch` DESC;
9595

9696
arch,
9797
String("x86-64"),

integration_tests/cases/common/function/aggregate.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ VALUES
5353

5454
SELECT count(`arch`) FROM `02_function_aggregate_table1`;
5555

56-
SELECT distinct(`arch`) FROM `02_function_aggregate_table1`;
56+
SELECT distinct(`arch`) FROM `02_function_aggregate_table1` ORDER BY `arch` DESC;
5757

5858
SELECT count(distinct(`arch`)) FROM `02_function_aggregate_table1`;
5959

0 commit comments

Comments
 (0)