mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
Fixed: Typo
This commit is contained in:
parent
85773e0926
commit
318064ccce
@ -27,14 +27,14 @@ struct TranslateImpl
|
|||||||
const std::string & map_to)
|
const std::string & map_to)
|
||||||
{
|
{
|
||||||
if (map_from.size() != map_to.size())
|
if (map_from.size() != map_to.size())
|
||||||
throw Exception("Second and trird arguments must be the same length", ErrorCodes::BAD_ARGUMENTS);
|
throw Exception("Second and third arguments must be the same length", ErrorCodes::BAD_ARGUMENTS);
|
||||||
|
|
||||||
std::iota(map.begin(), map.end(), 0);
|
std::iota(map.begin(), map.end(), 0);
|
||||||
|
|
||||||
for (size_t i = 0; i < map_from.size(); ++i)
|
for (size_t i = 0; i < map_from.size(); ++i)
|
||||||
{
|
{
|
||||||
if (!isASCII(map_from[i]) || !isASCII(map_to[i]))
|
if (!isASCII(map_from[i]) || !isASCII(map_to[i]))
|
||||||
throw Exception("Second and trird arguments must be ASCII strings", ErrorCodes::BAD_ARGUMENTS);
|
throw Exception("Second and third arguments must be ASCII strings", ErrorCodes::BAD_ARGUMENTS);
|
||||||
|
|
||||||
map[map_from[i]] = map_to[i];
|
map[map_from[i]] = map_to[i];
|
||||||
}
|
}
|
||||||
@ -125,7 +125,7 @@ struct TranslateUTF8Impl
|
|||||||
auto map_to_size = UTF8::countCodePoints(reinterpret_cast<const UInt8 *>(map_to.data()), map_to.size());
|
auto map_to_size = UTF8::countCodePoints(reinterpret_cast<const UInt8 *>(map_to.data()), map_to.size());
|
||||||
|
|
||||||
if (map_from_size != map_to_size)
|
if (map_from_size != map_to_size)
|
||||||
throw Exception("Second and trird arguments must be the same length", ErrorCodes::BAD_ARGUMENTS);
|
throw Exception("Second and third arguments must be the same length", ErrorCodes::BAD_ARGUMENTS);
|
||||||
|
|
||||||
std::iota(map_ascii.begin(), map_ascii.end(), 0);
|
std::iota(map_ascii.begin(), map_ascii.end(), 0);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user