Skip to content

Commit

Permalink
[HUDI-4799] improve analyzer exception tip when can not resolve expre…
Browse files Browse the repository at this point in the history
…ssion
  • Loading branch information
KnightChess committed Sep 7, 2022
1 parent dbb044b commit 5f385a1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -267,7 +267,7 @@ case class HoodieResolveReferences(sparkSession: SparkSession) extends Rule[Logi
case mergeInto @ MergeIntoTable(target, source, mergeCondition, matchedActions, notMatchedActions)
if sparkAdapter.isHoodieTable(target, sparkSession) && target.resolved =>
val resolver = sparkSession.sessionState.conf.resolver
val resolvedSource = analyzer.execute(source)
val resolvedSource = analyzer.executeAndCheck(source, null)

def isInsertOrUpdateStar(assignments: Seq[Assignment]): Boolean = {
if (assignments.isEmpty) {
Expand Down

0 comments on commit 5f385a1

Please sign in to comment.