mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Merge pull request #20454 from ClickHouse/aggregation-common-non-significant-change
Non significant change in AggregationCommon
This commit is contained in:
commit
024d8491d6
@ -77,12 +77,8 @@ static inline T ALWAYS_INLINE packFixed(
|
||||
const ColumnRawPtrs * low_cardinality_positions [[maybe_unused]] = nullptr,
|
||||
const Sizes * low_cardinality_sizes [[maybe_unused]] = nullptr)
|
||||
{
|
||||
union
|
||||
{
|
||||
T key;
|
||||
char bytes[sizeof(key)] = {};
|
||||
};
|
||||
|
||||
T key{};
|
||||
char * bytes = reinterpret_cast<char *>(&key);
|
||||
size_t offset = 0;
|
||||
|
||||
for (size_t j = 0; j < keys_size; ++j)
|
||||
|
Loading…
Reference in New Issue
Block a user