mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Fixed bad code
This commit is contained in:
parent
f4b819c692
commit
3c29b5f611
@ -80,9 +80,9 @@ std::ostream & operator<<(std::ostream & stream, const IColumn & what)
|
||||
stream << "{";
|
||||
for (size_t i = 0; i < what.size(); ++i)
|
||||
{
|
||||
stream << applyVisitor(FieldVisitorDump(), what[i]);
|
||||
if (i)
|
||||
stream << ", ";
|
||||
stream << applyVisitor(FieldVisitorDump(), what[i]);
|
||||
}
|
||||
stream << "}";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user