mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Fixed error
This commit is contained in:
parent
a5e3d4efb7
commit
f90f53c986
@ -304,7 +304,7 @@ inline void splitInto(To & to, const std::string & what, bool token_compress = f
|
||||
const char * end = pos + what.size();
|
||||
while (pos < end)
|
||||
{
|
||||
const char * delimiter_or_end = find_first_symbols<','>(pos, end);
|
||||
const char * delimiter_or_end = find_first_symbols<symbols...>(pos, end);
|
||||
|
||||
if (!token_compress || pos + 1 < delimiter_or_end)
|
||||
to.emplace_back(pos, delimiter_or_end);
|
||||
|
Loading…
Reference in New Issue
Block a user