Fix logical error

This commit is contained in:
Alexey Milovidov 2024-11-12 22:05:09 +01:00
parent 18a26c1cd0
commit 58ba54ca21

View File

@ -1695,7 +1695,7 @@ public:
&& (sizeof(typename LeftDataType::FieldType) > 8 || sizeof(typename RightDataType::FieldType) > 8))
{
/// Big integers and BFloat16 are not supported together.
return nullptr;
return false;
}
using ResultDataType = typename BinaryOperationTraits<Op, LeftDataType, RightDataType>::ResultDataType;