mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
Fix DeltaLake partitioned by Bool when it is true
This commit is contained in:
parent
ca59370552
commit
4866581a67
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user