And one more fix.

This commit is contained in:
Maxim Akhmedov 2020-01-28 15:33:25 +03:00
parent ead37dc294
commit 65356ea893

View File

@ -271,7 +271,7 @@ public:
return l == r;
if constexpr (std::is_same_v<U, Int64> || std::is_same_v<U, UInt64>)
return l == DecimalField<Decimal128>(r, 0);
if constexpr (std::is_same_v<T, Null>)
if constexpr (std::is_same_v<U, Null>)
return false;
return cantCompare(l, r);
}