delete blank

This commit is contained in:
zhanglistar 2024-09-18 17:36:06 +08:00
parent 6d545acf30
commit f60acdf2cf

View File

@ -540,7 +540,6 @@ inline bool isNullableOrLowCardinalityNullable(const DataTypePtr & data_type)
return data_type->isNullable() || data_type->isLowCardinalityNullable();
}
template <typename DataType> constexpr bool IsDataTypeDecimal = false;
template <typename DataType> constexpr bool IsDataTypeNumber = false;
template <typename DataType> constexpr bool IsDataTypeDateOrDateTime = false;
@ -550,7 +549,6 @@ template <typename DataType> constexpr bool IsDataTypeStringOrFixedString = fals
template <typename DataType> constexpr bool IsDataTypeDecimalOrNumber = IsDataTypeDecimal<DataType> || IsDataTypeNumber<DataType>;
template <is_decimal T>
class DataTypeDecimal;