Update 01009_global_array_join_names.sql

This commit is contained in:
Ivan 2019-09-13 17:44:04 +03:00 committed by GitHub
parent dc49303baf
commit add919e922
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ DROP TABLE IF EXISTS test1;
DROP TABLE IF EXISTS test2;
CREATE TABLE test1 (a UInt8, b Array(DateTime)) ENGINE Memory;
CREATE TABLE test2 as test1 ENGINE Distributed(test_shard, currentDatabase(), test1);
CREATE TABLE test2 as test1 ENGINE Distributed(test_shard_localhost, currentDatabase(), test1);
INSERT INTO test1 VALUES (1, [1, 2, 3]);