Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
scottsand-db committed Apr 30, 2024
1 parent 99efb21 commit 3a70f75
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -608,8 +608,7 @@ class DeltaLog private(
*/
protected def checkRequiredConfigurations(): Unit = {
if (spark.sessionState.conf.getConf(DeltaSQLConf.DELTA_REQUIRED_SPARK_CONFS_CHECK)) {
if (spark.conf.getOption(
SQLConf.V2_SESSION_CATALOG_IMPLEMENTATION.key).isEmpty) {
if (!spark.conf.contains(SQLConf.V2_SESSION_CATALOG_IMPLEMENTATION.key)) {
throw DeltaErrors.configureSparkSessionWithExtensionAndCatalog(None)
}
}
Expand Down

0 comments on commit 3a70f75

Please sign in to comment.