mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Possibly fix clang-tidy
This commit is contained in:
parent
94fcd929db
commit
6be6ac9c14
@ -23,7 +23,8 @@ namespace ErrorCodes
|
||||
|
||||
|
||||
ColumnString::ColumnString(const ColumnString & src)
|
||||
: offsets(src.offsets.begin(), src.offsets.end()),
|
||||
: COWHelper<IColumn, ColumnString>(src),
|
||||
offsets(src.offsets.begin(), src.offsets.end()),
|
||||
chars(src.chars.begin(), src.chars.end())
|
||||
{
|
||||
if (!offsets.empty())
|
||||
|
Loading…
Reference in New Issue
Block a user