Skip to content

Commit

Permalink
test ci impl
Browse files Browse the repository at this point in the history
Signed-off-by: guo-shaoge <[email protected]>
  • Loading branch information
guo-shaoge committed Jan 3, 2025
1 parent 4cac26a commit a311faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/Columns/ColumnDecimal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ int ColumnDecimal<T>::compareAt(size_t n, size_t m, const IColumn & rhs_, int) c
return decimalLess<T>(b, a, other.scale, scale) ? 1 : (decimalLess<T>(a, b, scale, other.scale) ? -1 : 0);
}

ALWAYS_INLINE inline size_t getDecimal256BytesSize(const Decimal256 & val)
ALWAYS_INLINE inline size_t getDecimal256BytesSize(const Decimal256 & )
{
// return sizeof(bool) + sizeof(size_t) + val.value.backend().size() * sizeof(boost::multiprecision::limb_type);
return sizeof(Decimal256);
Expand Down

0 comments on commit a311faa

Please sign in to comment.