mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
Update src/Formats/StructureToFormatSchemaUtils.cpp
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
This commit is contained in:
parent
8a753de296
commit
bc86c26e4e
@ -61,7 +61,7 @@ namespace
|
|||||||
const auto * it = find_first_symbols<'_', '.'>(begin, end);
|
const auto * it = find_first_symbols<'_', '.'>(begin, end);
|
||||||
String first = String(begin, it);
|
String first = String(begin, it);
|
||||||
String second = it == end ? "" : String(it + 1, end);
|
String second = it == end ? "" : String(it + 1, end);
|
||||||
return {first, second};
|
return {std::move(first), std::move(second)};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user