[MINOR] Fallback to default for hive-style partitioning, url-encoding configs (#6175)
- Fixes broken ITTestHoodieDemo#testParquetDemo
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user