Fix DeltaLake partitioned by Bool when it is true

This commit is contained in:
Alexey Milovidov 2024-08-12 04:59:21 +02:00
parent ca59370552
commit 4866581a67

View File

@ -332,6 +332,8 @@ struct DeltaLakeMetadataImpl
WhichDataType which(check_type->getTypeId());
if (which.isStringOrFixedString())
return value;
else if (isBool(data_type))
return parse<bool>(value);
else if (which.isInt8())
return parse<Int8>(value);
else if (which.isUInt8())