Update 01711_cte_subquery_fix.sql

This commit is contained in:
alesapin 2021-02-09 14:54:13 +03:00 committed by GitHub
parent 8911a038a0
commit 34cc9d5430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,2 +1,3 @@
create or replace table t engine = Memory as with cte as (select * from numbers(10)) select * from cte;
drop table if exists t;
create table t engine = Memory as with cte as (select * from numbers(10)) select * from cte;
drop table t;