hehuiyuan created HUDI-6598:
-------------------------------
Summary: Fix the error type of sync-strategy parameter in
HiveSyncConfig
Key: HUDI-6598
URL: https://issues.apache.org/jira/browse/HUDI-6598
Project: Apache Hudi
Issue Type: Bug
Reporter: hehuiyuan
The parameter `--sync-strategy` is error when use HiveSyncTool.
```java
public static final ConfigProperty<String> HIVE_SYNC_TABLE_STRATEGY =
ConfigProperty
.key("hoodie.datasource.hive_sync.table.strategy")
.defaultValue(HoodieSyncTableStrategy.ALL.name())
.markAdvanced()
.sinceVersion("0.13.0")
.withDocumentation("Hive table synchronization strategy. Available
option: RO, RT, ALL.");
```
The hoodie parameter `hoodie.datasource.hive_sync.table.strategy` 's type is
STRING.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)