minor test fix (#9835)

This commit is contained in:
Artem Zuikov 2020-03-24 01:44:29 +03:00 committed by GitHub
parent 0744606fc3
commit 0b6fdde9fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -517,7 +517,7 @@ where
and l_shipdate < date '1995-09-01' + interval '1' month;
select 15, 'fail: correlated subquery'; -- TODO: Missing columns: 'total_revenue'
drop table if exists revenue0;
drop view if exists revenue0;
create view revenue0 as
select
l_suppkey,
@ -548,7 +548,7 @@ where
)
order by
s_suppkey; -- { serverError 47 }
drop table revenue0; -- TODO: drop view
drop view revenue0;
select 16;
select