Skip to content

Commit aeea1b4

Browse files
committed
fix compact_database parameter mode default value
Signed-off-by: peiyu <[email protected]>
1 parent abb211a commit aeea1b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/action/MultiTablesSinkMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public enum MultiTablesSinkMode implements Serializable {
3737

3838
public static MultiTablesSinkMode fromString(@Nullable String mode) {
3939
if (mode == null) {
40-
return DIVIDED;
40+
return COMBINED;
4141
}
4242

4343
switch (mode.toLowerCase()) {

0 commit comments

Comments
 (0)