Fixed test database name

This commit is contained in:
Maksim Kita 2021-04-20 16:31:10 +03:00
parent 0fc4776424
commit 02cbb9ed14

View File

@ -2,7 +2,7 @@ DROP TABLE IF EXISTS data;
CREATE TABLE data (a Int64, b Int64) ENGINE = TinyLog();
DROP TABLE IF EXISTS data_distributed;
CREATE TABLE data_distributed (a Int64, b Int64) ENGINE = Distributed(test_shard_localhost, '', data);
CREATE TABLE data_distributed (a Int64, b Int64) ENGINE = Distributed(test_shard_localhost, currentDatabase(), 'data');
INSERT INTO data VALUES (0, 0);