Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
xudong963 committed May 14, 2022
1 parent bff4bfe commit 95e66f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 2 additions & 4 deletions tests/suites/0_stateless/20+_others/20_0001_planner_v2.result
Original file line number Diff line number Diff line change
Expand Up @@ -234,13 +234,11 @@ new_planner
18
====Memory Table====
1
====Context Function====
default
===================
=== Test Subquery In From ===
1
2
0 0 5
0 4 5
0 8 5
===================
====Context Function====
default
2 changes: 0 additions & 2 deletions tests/suites/0_stateless/20+_others/20_0001_planner_v2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ create table temp (a int) engine = Memory;
insert into temp values (1);
select a from temp;
drop table temp;
select '===================';

-- subquery in from
select '=== Test Subquery In From ===';
Expand All @@ -170,7 +169,6 @@ insert into t values(1, 2),(2, 3);
select t1.a from (select * from t) as t1;
SELECT a,b,count() from (SELECT cast((number%4) AS bigint) as a, cast((number%20) AS bigint) as b from numbers(100)) group by a,b order by a,b limit 3 ;
drop table t;
select '===================';

select '====Context Function====';
use default;
Expand Down

0 comments on commit 95e66f7

Please sign in to comment.