File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/queries/0_stateless Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ DROP TABLE IF EXISTS t1;
77DROP TABLE IF EXISTS v0;
88
99CREATE TABLE t0 (c0 Array(String)) ENGINE = Memory;
10- CREATE TABLE t1 (c0 Array(String)) ENGINE = Distributed(' test_shard_localhost' , default , t0);
10+ CREATE TABLE t1 (c0 Array(String)) ENGINE = Distributed(' test_shard_localhost' , currentDatabase() , t0);
1111CREATE MATERIALIZED VIEW v0 TO t1 (c0 String) AS (SELECT 1 ::Array(Int ) AS c0); -- { serverError CANNOT_READ_ARRAY_FROM_TEXT }
1212
1313DROP TABLE IF EXISTS t0;
1414DROP TABLE IF EXISTS t1;
1515DROP TABLE IF EXISTS v0;
1616
1717CREATE TABLE t0 (c1 Int ) ENGINE = MergeTree() ORDER BY tuple();
18- CREATE TABLE t1 (c1 Date ) ENGINE = Distributed(' test_shard_localhost' , default , t0);
18+ CREATE TABLE t1 (c1 Date ) ENGINE = Distributed(' test_shard_localhost' , currentDatabase() , t0);
1919CREATE MATERIALIZED VIEW v0 TO t1 (c1 String) AS (SELECT ' 2010-10-10' AS c1);
2020SELECT CAST(c1 AS Enum(' 1' = 1 )) FROM v0;
2121
You can’t perform that action at this time.
0 commit comments