mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Correct to-from pairing for transformEndianness.
This commit is contained in:
parent
6b42975d33
commit
b905703909
@ -391,7 +391,7 @@ static void transformFixedString(const UInt8 * src, UInt8 * dst, size_t size, UI
|
||||
static void transformUUID(const UUID & src_uuid, UUID & dst_uuid, UInt64 seed)
|
||||
{
|
||||
auto src_copy = src_uuid;
|
||||
transformEndianness<std::endian::native, std::endian::little>(src_copy);
|
||||
transformEndianness<std::endian::little, std::endian::native>(src_copy);
|
||||
|
||||
const UInt128 & src = src_copy.toUnderType();
|
||||
UInt128 & dst = dst_uuid.toUnderType();
|
||||
|
Loading…
Reference in New Issue
Block a user