Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
* Hoodie cleaning policies.
*/
public enum HoodieCleaningPolicy {
KEEP_LATEST_FILE_VERSIONS, KEEP_LATEST_COMMITS, KEEP_LATEST_BY_HOURS;
KEEP_LATEST_FILE_VERSIONS, KEEP_LATEST_COMMITS, KEEP_LATEST_BY_HOURS
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ public enum InsertMode {
* In non-strict mode for insert into, we use insert operation
* to write data which allow writing the duplicate record.
*/
NON_STRICT("non-strict")
;
NON_STRICT("non-strict");

private String value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ public enum HiveSyncMode {
/**
* The JDBC mode use hive jdbc to sync metadata.
*/
JDBC
;
JDBC;

public static HiveSyncMode of(String syncMode) {
return HiveSyncMode.valueOf(syncMode.toUpperCase(Locale.ROOT));
Expand Down