Skip to content

Commit 07498be

Browse files
authored
ci: fix flaky test. (#18430)
1 parent c026c9d commit 07498be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sqllogictests/suites/query/functions/02_0000_function_aggregate_mix.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ INSERT INTO convert_string (c1, c2, c3) VALUES
579579
('b', 1, 2);
580580

581581
query IT
582-
select c1, string_agg(json_object('col', c2, 'no2', c3), ',') from convert_string group by c1;
582+
select c1, string_agg(json_object('col', c2, 'no2', c3), ',') from convert_string group by c1 order by c1;
583583
----
584584
a {"col":1,"no2":1},{"col":2,"no2":1},{"col":1,"no2":1},{"col":1,"no2":2},{"col":2,"no2":2}
585585
b {"col":1,"no2":1},{"col":2,"no2":1},{"col":1,"no2":2}

0 commit comments

Comments
 (0)