We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b15d6c commit b6cbac5Copy full SHA for b6cbac5
sqlmesh/engines/spark/db_api/spark_session.py
@@ -75,6 +75,8 @@ def cursor(self) -> SparkSessionCursor:
75
# Note: Spark 3.4+ Only API
76
self.spark.catalog.setCurrentCatalog(self.catalog)
77
self.spark.conf.set("spark.sql.sources.partitionOverwriteMode", "dynamic")
78
+ self.spark.conf.set("spark.hadoop.hive.exec.dynamic.partition", "true")
79
+ self.spark.conf.set("spark.hadoop.hive.exec.dynamic.partition.mode", "nonstrict")
80
return SparkSessionCursor(self.spark)
81
82
def commit(self) -> None:
0 commit comments