mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Fixed test database name
This commit is contained in:
parent
0fc4776424
commit
02cbb9ed14
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user