по 2 таблицы такие?
CREATE TABLE IF NOT EXISTS Measures
(
account UInt32,
id UInt32,
date Date,
timestamp UInt32,
value Float32,
tags Nested (
name UInt32,
value UInt32
)
) Engine = ReplicatedMergeTree('/clickhouse/tables/measures/02', '2',date, (account, id, timestamp), 8192);
CREATE TABLE IF NOT EXISTS Measures
(
account UInt32,
id UInt32,
date Date,
timestamp UInt32,
value Float32,
tags Nested (
name UInt32,
value UInt32
)
) Engine = ReplicatedMergeTree('/clickhouse/tables/measures/03', '2',date, (account, id, timestamp), 8192);
Как-то странно создаются таблицы. По-логике, 2-я совсем не должна была создаться, так как IF NOT EXISTS, и имя совпадает с первой.
Обсуждают сегодня