mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
Working commit
This commit is contained in:
parent
0f73cc3090
commit
9e36c7c4e9
@ -718,9 +718,9 @@ private:
|
||||
size_t size = vec_from.size();
|
||||
for (size_t i = 0; i < size; ++i)
|
||||
{
|
||||
String hash_string = toString<UUID>(UUID(vec_from[i]));
|
||||
String hash_string = toString(UUID(vec_from[i]));
|
||||
std::cerr << hash_string << std::endl;
|
||||
const ToType h = Impl::apply(reinterpret_cast<const char *>(&hash_string), 16);
|
||||
const ToType h = Impl::apply(reinterpret_cast<const char *>(&hash_string), hash_string.size());
|
||||
if (first)
|
||||
vec_to[i] = h;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user