From add919e922f014daf770fb62ef76b2afe7cbf0af Mon Sep 17 00:00:00 2001 From: Ivan <5627721+abyss7@users.noreply.github.com> Date: Fri, 13 Sep 2019 17:44:04 +0300 Subject: [PATCH] Update 01009_global_array_join_names.sql --- .../tests/queries/0_stateless/01009_global_array_join_names.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/tests/queries/0_stateless/01009_global_array_join_names.sql b/dbms/tests/queries/0_stateless/01009_global_array_join_names.sql index 17e5692c51d..51447c7708f 100644 --- a/dbms/tests/queries/0_stateless/01009_global_array_join_names.sql +++ b/dbms/tests/queries/0_stateless/01009_global_array_join_names.sql @@ -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]);