Update 01056_create_table_as.sql

This commit is contained in:
alexey-milovidov 2020-01-03 11:15:34 +03:00 committed by GitHub
parent 2aba254fb6
commit 1dc1411077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (key Int) Engine=Memory();
CREATE TABLE t2 AS t1;
DROP TABLE t2;
-- live view
SET allow_experimental_live_view=1;