minor fix: remove unused func

This commit is contained in:
chertus 2018-09-05 18:18:48 +03:00
parent 7e26ff0f05
commit 6096c6998d

View File

@ -442,11 +442,6 @@ inline bool isNotDecimalButComparableToDecimal(const IDataType * data_type)
return data_type->isInteger();
}
inline bool isComparableToDecimal(const IDataType * data_type)
{
return isDecimal(data_type) || isNotDecimalButComparableToDecimal(data_type);
}
inline bool isCompilable(const IDataType * data_type)
{
return data_type->isValueRepresentedByNumber() && !isDecimal(data_type);