This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new b9ff23d52b [spark] Correct the warning message when missing paimon
extension (#5372)
b9ff23d52b is described below
commit b9ff23d52b2d99bbadc131c0af7852bf0f219869
Author: JackeyLee007 <[email protected]>
AuthorDate: Mon Mar 31 13:15:45 2025 +0800
[spark] Correct the warning message when missing paimon extension (#5372)
---
.../src/main/scala/org/apache/paimon/spark/util/OptionUtils.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/util/OptionUtils.scala
b/paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/util/OptionUtils.scala
index d1688622d4..7315730faf 100644
---
a/paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/util/OptionUtils.scala
+++
b/paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/util/OptionUtils.scala
@@ -52,7 +52,7 @@ object OptionUtils extends SQLConfHelper {
if (!paimonExtensionEnabled) {
throw new RuntimeException(
"""
- |When using Paimon, it is necessary to configure
`spark.sql.extensions` and ensure that it includes
`org.apache.paimon.spark.extensions.PaimonSparkSessionExtension`.
+ |When using Paimon, it is necessary to configure
`spark.sql.extensions` and ensure that it includes
`org.apache.paimon.spark.extensions.PaimonSparkSessionExtensions`.
|You can disable this check by configuring
`spark.paimon.requiredSparkConfsCheck.enabled` to `false`, but it is strongly
discouraged to do so.
|""".stripMargin)
}