Skip to content

Commit

Permalink
[hotfix] Fixed incorrect use of the paimon catalog (#3362)
Browse files Browse the repository at this point in the history
fix catalog
  • Loading branch information
MarigWeizhi authored Dec 10, 2024
1 parent 2298331 commit 24cec41
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ public static Map<String, String> getSparkConf(Configurations sessionConfig) {
sessionConfig.get(TerminalSessionFactory.SessionConfigOptions.catalogConnector(catalog));
String catalogClassName;
String sparkCatalogPrefix = "spark.sql.catalog." + catalog;
if ("arctic".equalsIgnoreCase(connector)) {
if ("arctic".equalsIgnoreCase(connector)
|| "mixed_iceberg".equalsIgnoreCase(connector)
|| "mixed_hive".equalsIgnoreCase(connector)) {
catalogClassName = MIXED_FORMAT_CATALOG;
String type =
sessionConfig.get(
Expand Down

0 comments on commit 24cec41

Please sign in to comment.