2019-06-07 16:02:24 +00:00
|
|
|
DROP TABLE IF EXISTS test_00599;
|
|
|
|
DROP TABLE IF EXISTS test_view_00599;
|
2018-03-08 01:20:07 +00:00
|
|
|
|
2019-06-07 16:02:24 +00:00
|
|
|
CREATE TABLE test_00599(id UInt64) ENGINE = Log;
|
|
|
|
CREATE VIEW test_view_00599 AS SELECT * FROM test_00599 WHERE id = (SELECT 1);
|
2018-03-08 01:20:07 +00:00
|
|
|
|
2019-06-07 16:02:24 +00:00
|
|
|
DETACH TABLE test_view_00599;
|
|
|
|
ATTACH TABLE test_view_00599;
|
2018-03-08 01:20:07 +00:00
|
|
|
|
2019-06-07 16:02:24 +00:00
|
|
|
SHOW CREATE TABLE test_view_00599;
|
2018-03-08 01:20:07 +00:00
|
|
|
|
2019-06-07 16:02:24 +00:00
|
|
|
DROP TABLE IF EXISTS test_00599;
|
|
|
|
DROP TABLE IF EXISTS test_view_00599;
|