ClickHouse/dbms/tests/queries/0_stateless/00599_create_view_with_subquery.sql

14 lines
419 B
MySQL
Raw Normal View History

2019-06-03 17:36:27 +00:00
DROP TABLE IF EXISTS test.test_00599;
DROP TABLE IF EXISTS test.test_view_00599;
2019-06-03 17:36:27 +00:00
CREATE TABLE test.test_00599(id UInt64) ENGINE = Log;
CREATE VIEW test.test_view_00599 AS SELECT * FROM test.test_00599 WHERE id = (SELECT 1);
2019-06-03 17:36:27 +00:00
DETACH TABLE test.test_view_00599;
ATTACH TABLE test.test_view_00599;
2019-06-03 17:36:27 +00:00
SHOW CREATE TABLE test.test_view_00599;
2019-06-03 17:36:27 +00:00
DROP TABLE IF EXISTS test.test_00599;
DROP TABLE IF EXISTS test.test_view_00599;