We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cac26a commit eeb1ac3Copy full SHA for eeb1ac3
dbms/src/Columns/ColumnDecimal.cpp
@@ -56,7 +56,7 @@ int ColumnDecimal<T>::compareAt(size_t n, size_t m, const IColumn & rhs_, int) c
56
return decimalLess<T>(b, a, other.scale, scale) ? 1 : (decimalLess<T>(a, b, scale, other.scale) ? -1 : 0);
57
}
58
59
-ALWAYS_INLINE inline size_t getDecimal256BytesSize(const Decimal256 & val)
+ALWAYS_INLINE inline size_t getDecimal256BytesSize(const Decimal256 &)
60
{
61
// return sizeof(bool) + sizeof(size_t) + val.value.backend().size() * sizeof(boost::multiprecision::limb_type);
62
return sizeof(Decimal256);
0 commit comments