mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
dbms: improvements [#METR-10498]
This commit is contained in:
parent
d9e931a8fe
commit
3e61e7b7f6
@ -72,6 +72,7 @@ public:
|
||||
bool first = true;
|
||||
std::stringstream ss;
|
||||
|
||||
ss << "{";
|
||||
for (const Field & f : *ordered_set)
|
||||
{
|
||||
if (!first)
|
||||
@ -80,6 +81,7 @@ public:
|
||||
ss << f;
|
||||
first = false;
|
||||
}
|
||||
ss << "}";
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user