Update 01009_global_array_join_names.sql

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

View File

@ -7,12 +7,12 @@ CREATE TABLE test2 as test1 ENGINE Distributed(test_shard_localhost, currentData
INSERT INTO test1 VALUES (1, [1, 2, 3]);
SELECT 1
FROM d1 AS d1
FROM test2 AS test2
ARRAY JOIN arrayFilter(t -> (t GLOBAL IN
(
SELECT DISTINCT now() AS `ym:a`
WHERE 1
)), d1.a) AS d1_a
)), test1.b) AS test1_b
WHERE 1;
DROP TABLE test1;