1
0

[MINOR] Fallback to default for hive-style partitioning, url-encoding configs (#6175)

- Fixes broken ITTestHoodieDemo#testParquetDemo
This commit is contained in:
Alexey Kudinkin
2022-07-22 06:25:58 -07:00
committed by GitHub
parent 51b5783161
commit 41653fc708

View File

@@ -594,11 +594,11 @@ public class HoodieTableConfig extends HoodieConfig {
}
public String getHiveStylePartitioningEnable() {
return getString(HIVE_STYLE_PARTITIONING_ENABLE);
return getStringOrDefault(HIVE_STYLE_PARTITIONING_ENABLE);
}
public String getUrlEncodePartitioning() {
return getString(URL_ENCODE_PARTITIONING);
return getStringOrDefault(URL_ENCODE_PARTITIONING);
}
public Boolean shouldDropPartitionColumns() {