mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
minor test fix (#9835)
This commit is contained in:
parent
0744606fc3
commit
0b6fdde9fc
@ -517,7 +517,7 @@ where
|
|||||||
and l_shipdate < date '1995-09-01' + interval '1' month;
|
and l_shipdate < date '1995-09-01' + interval '1' month;
|
||||||
|
|
||||||
select 15, 'fail: correlated subquery'; -- TODO: Missing columns: 'total_revenue'
|
select 15, 'fail: correlated subquery'; -- TODO: Missing columns: 'total_revenue'
|
||||||
drop table if exists revenue0;
|
drop view if exists revenue0;
|
||||||
create view revenue0 as
|
create view revenue0 as
|
||||||
select
|
select
|
||||||
l_suppkey,
|
l_suppkey,
|
||||||
@ -548,7 +548,7 @@ where
|
|||||||
)
|
)
|
||||||
order by
|
order by
|
||||||
s_suppkey; -- { serverError 47 }
|
s_suppkey; -- { serverError 47 }
|
||||||
drop table revenue0; -- TODO: drop view
|
drop view revenue0;
|
||||||
|
|
||||||
select 16;
|
select 16;
|
||||||
select
|
select
|
||||||
|
Loading…
Reference in New Issue
Block a user