Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
fix ci
  • Loading branch information
xxhZs committed Sep 12, 2024
1 parent 31c15a7 commit e0df8cc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions e2e_test/iceberg/test_case/iceberg_source_eq_delete.slt
Original file line number Diff line number Diff line change
Expand Up @@ -64,26 +64,26 @@ WITH (
query I
select * from iceberg_t1_source order by i1;
----
1,2,3
4,5,6
1 2 3
4 5 6

query I
select i1,i2,i3 from iceberg_t1_source order by v1;
select i1,i2,i3 from iceberg_t1_source order by i1;
----
1,2,3
4,5,6
1 2 3
4 5 6

query I
select i3,i2 from iceberg_t1_source order by i2;
----
3,2
6,5
3 2
6 5

query I
select i2,i1 from iceberg_t1_source order by i1;
----
2,1
5,4
2 1
5 4

query I
select i1 from iceberg_t1_source order by i1;
Expand Down

0 comments on commit e0df8cc

Please sign in to comment.