Skip to content
Open
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 @@ -64,7 +64,7 @@ public class CompactDatabaseAction extends ActionBase {
@Nullable private Pattern excludingPattern;
private Pattern databasePattern = Pattern.compile(".*");

private MultiTablesSinkMode databaseCompactMode = MultiTablesSinkMode.DIVIDED;
private MultiTablesSinkMode databaseCompactMode = MultiTablesSinkMode.COMBINED;

private final Map<String, FileStoreTable> tableMap = new HashMap<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public enum MultiTablesSinkMode implements Serializable {

public static MultiTablesSinkMode fromString(@Nullable String mode) {
if (mode == null) {
return DIVIDED;
return COMBINED;
}

switch (mode.toLowerCase()) {
Expand Down
Loading