Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
xudong963 committed Sep 6, 2024
1 parent 734a2ba commit 21636db
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/sqllogictests/suites/mode/standalone/explain/limit.test
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,8 @@ Limit


query T
explain select * from (select count(t1.number) as c1 from numbers(1) as t1 group by number) as t3 left join (select count(t.number) as c from numbers(2) as t group by number) as t4 on t3.c1=t4.c order by t3.c1 limit 0
explain select c1 from (select count(t1.number) as c1 from numbers(1) as t1 group by number) as t3 left join (select count(t.number) as c from numbers(2) as t group by number) as t4 on t3.c1=t4.c order by t3.c1 limit 0
----
ConstantTableScan
├── output columns: [count(t1.number) (#2), count(t.number) (#5)]
├── column 0: []
└── column 1: []
├── output columns: [count(t1.number) (#2)]
└── column 0: []

0 comments on commit 21636db

Please sign in to comment.