Skip to content

Commit

Permalink
Merge branch 'master' into fix-expire-data-after-dropping-partition
Browse files Browse the repository at this point in the history
  • Loading branch information
XBaith authored Dec 11, 2024
2 parents 758ccf3 + 24cec41 commit e76fcff
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 e76fcff

Please sign in to comment.