mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Merge pull request #36820 from azat/fix-asynchronous_metric_log
Avoid recreation of system.asynchronous_metric_log (due to difference in codec)
This commit is contained in:
commit
91d1ac913c
@ -37,9 +37,9 @@ struct AsynchronousMetricLogElement
|
||||
/// Otherwise the list will be constructed from LogElement::getNamesAndTypes and LogElement::getNamesAndAliases.
|
||||
static const char * getCustomColumnList()
|
||||
{
|
||||
return "event_date Date CODEC(Delta(2), ZSTD), "
|
||||
"event_time DateTime CODEC(Delta(4), ZSTD), "
|
||||
"metric LowCardinality(String) CODEC(ZSTD), "
|
||||
return "event_date Date CODEC(Delta(2), ZSTD(1)), "
|
||||
"event_time DateTime CODEC(Delta(4), ZSTD(1)), "
|
||||
"metric LowCardinality(String) CODEC(ZSTD(1)), "
|
||||
"value Float64 CODEC(Gorilla, ZSTD(3))";
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user