Skip to content

Commit

Permalink
Merge branch 'master' into AMORO-FixBug-in-PageHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangwl9 authored Dec 12, 2024
2 parents d93d57d + 24cec41 commit 73751bc
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 73751bc

Please sign in to comment.