RussellSpitzer commented on issue #1144: URL: https://github.com/apache/iceberg/issues/1144#issuecomment-658370891
Based on the location of your error it seems you are running Spark 3.0.0-preview2 (or another pre 3.0.0) release. https://github.com/apache/spark/blob/v3.0.0-preview2/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala#L877 Those versions did not fully support and had some bugs with the multi-part identifiers. In particular you hit an assertion that was trying to enforce that the namespace contained only a single element. Try the official Spark 3.0.0 release. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
