Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Dec 16, 2024
1 parent 7d6a79e commit 87faa85
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.HashMap;
import java.util.Map;

/** A Operator to copy files. */
Expand Down Expand Up @@ -63,6 +64,8 @@ public void open() throws Exception {
FlinkCatalogFactory.createPaimonCatalog(Options.fromMap(sourceCatalogConfig));
targetCatalog =
FlinkCatalogFactory.createPaimonCatalog(Options.fromMap(targetCatalogConfig));
srcLocations = new HashMap<>();
targetLocations = new HashMap<>();
}

@Override
Expand Down

0 comments on commit 87faa85

Please sign in to comment.