Skip to content

Commit

Permalink
[MINOR] Fallback to default for hive-style partitioning, url-encoding…
Browse files Browse the repository at this point in the history
… configs (apache#6175)

- Fixes broken ITTestHoodieDemo#testParquetDemo
  • Loading branch information
Alexey Kudinkin authored Jul 22, 2022
1 parent 51b5783 commit 41653fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -594,11 +594,11 @@ public String getKeyGeneratorClassName() {
}

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() {
Expand Down

0 comments on commit 41653fc

Please sign in to comment.