This commit is contained in:
avogar 2023-01-04 14:58:17 +00:00
parent 6f0c0252f0
commit 1f3d75cbf2

View File

@ -105,7 +105,7 @@ namespace
for (auto & type : data_types) for (auto & type : data_types)
{ {
WhichDataType which(type); WhichDataType which(type);
if (which.isFloat64() || which.isInt64() || which.isUInt64()) if (which.isInt64() || which.isUInt64())
type = std::make_shared<DataTypeFloat64>(); type = std::make_shared<DataTypeFloat64>();
} }