mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Add space after comma
This commit is contained in:
parent
8729201208
commit
2da8180613
@ -123,7 +123,7 @@ static String getCapnProtoFullTypeName(const capnp::Type & type)
|
|||||||
String type_name = "Struct(" + boost::algorithm::join(non_union_field_names, ", ");
|
String type_name = "Struct(" + boost::algorithm::join(non_union_field_names, ", ");
|
||||||
/// Check if the struct contains unnamed union.
|
/// Check if the struct contains unnamed union.
|
||||||
if (!union_field_names.empty())
|
if (!union_field_names.empty())
|
||||||
type_name += "," + union_name;
|
type_name += ", " + union_name;
|
||||||
type_name += ")";
|
type_name += ")";
|
||||||
return type_name;
|
return type_name;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user