mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5 lines
284 B
SQL
5 lines
284 B
SQL
drop table if exists view_bug_const;
|
|
CREATE VIEW view_bug_const AS SELECT 'World' AS hello FROM (SELECT number FROM system.numbers LIMIT 1) AS n1 JOIN (SELECT number FROM system.numbers LIMIT 1) AS n2 USING (number);
|
|
select * from view_bug_const;
|
|
drop table if exists view_bug_const;
|