diff --git a/dbms/include/DB/Interpreters/Set.h b/dbms/include/DB/Interpreters/Set.h index 683486e67dd..367223fc4e5 100644 --- a/dbms/include/DB/Interpreters/Set.h +++ b/dbms/include/DB/Interpreters/Set.h @@ -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(); }