This is an automated email from the ASF dual-hosted git repository.

andygrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git


The following commit(s) were added to refs/heads/main by this push:
     new 71758bcc77 fix: correct user guide URL in compatibility fallback 
messages (#4854)
71758bcc77 is described below

commit 71758bcc77395bc1afd354ba2f1110baab1ea63e
Author: Andy Grove <[email protected]>
AuthorDate: Tue Jul 7 19:50:17 2026 -0600

    fix: correct user guide URL in compatibility fallback messages (#4854)
---
 spark/src/main/scala/org/apache/comet/CometConf.scala             | 4 ++--
 spark/src/main/scala/org/apache/comet/serde/SupportLevel.scala    | 8 ++++----
 .../tpcds-plan-stability/approved-plans-v1_4/q24a/extended.txt    | 4 ++--
 .../tpcds-plan-stability/approved-plans-v1_4/q24b/extended.txt    | 4 ++--
 .../tpcds-plan-stability/approved-plans-v2_7/q24/extended.txt     | 4 ++--
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/spark/src/main/scala/org/apache/comet/CometConf.scala 
b/spark/src/main/scala/org/apache/comet/CometConf.scala
index 926fc6bc95..cd971d4f92 100644
--- a/spark/src/main/scala/org/apache/comet/CometConf.scala
+++ b/spark/src/main/scala/org/apache/comet/CometConf.scala
@@ -46,10 +46,10 @@ import org.apache.comet.shims.ShimCometConf
 object CometConf extends ShimCometConf {
 
   val COMPAT_GUIDE: String = "For more information, refer to the Comet 
Compatibility " +
-    "Guide (https://datafusion.apache.org/comet/user-guide/compatibility.html)"
+    "Guide 
(https://datafusion.apache.org/comet/user-guide/latest/compatibility/index.html)"
 
   private val TUNING_GUIDE = "For more information, refer to the Comet Tuning 
" +
-    "Guide (https://datafusion.apache.org/comet/user-guide/tuning.html)"
+    "Guide (https://datafusion.apache.org/comet/user-guide/latest/tuning.html)"
 
   private val TRACING_GUIDE = "For more information, refer to the Comet 
Tracing " +
     "Guide 
(https://datafusion.apache.org/comet/contributor-guide/tracing.html)"
diff --git a/spark/src/main/scala/org/apache/comet/serde/SupportLevel.scala 
b/spark/src/main/scala/org/apache/comet/serde/SupportLevel.scala
index 3bde4f83d8..60f2ff7934 100644
--- a/spark/src/main/scala/org/apache/comet/serde/SupportLevel.scala
+++ b/spark/src/main/scala/org/apache/comet/serde/SupportLevel.scala
@@ -30,8 +30,8 @@ sealed trait SupportLevel
  * Comet either supports this feature with full compatibility with Spark, or 
may have known
  * differences in some specific edge cases that are unlikely to be an issue 
for most users.
  *
- * Any compatibility differences are noted in the
- * [[https://datafusion.apache.org/comet/user-guide/compatibility.html Comet 
Compatibility Guide]].
+ * Any compatibility differences are noted in the Comet Compatibility Guide:
+ * 
[[https://datafusion.apache.org/comet/user-guide/latest/compatibility/index.html]].
  */
 case class Compatible(notes: Option[String] = None, nativeOptIn: 
Option[NativeOptIn] = None)
     extends SupportLevel
@@ -39,8 +39,8 @@ case class Compatible(notes: Option[String] = None, 
nativeOptIn: Option[NativeOp
 /**
  * Comet supports this feature but results can be different from Spark.
  *
- * Any compatibility differences are noted in the
- * [[https://datafusion.apache.org/comet/user-guide/compatibility.html Comet 
Compatibility Guide]].
+ * Any compatibility differences are noted in the Comet Compatibility Guide:
+ * 
[[https://datafusion.apache.org/comet/user-guide/latest/compatibility/index.html]].
  */
 case class Incompatible(notes: Option[String] = None) extends SupportLevel
 
diff --git 
a/spark/src/test/resources/tpcds-plan-stability/approved-plans-v1_4/q24a/extended.txt
 
b/spark/src/test/resources/tpcds-plan-stability/approved-plans-v1_4/q24a/extended.txt
index d285d92d0f..7cafc5725d 100644
--- 
a/spark/src/test/resources/tpcds-plan-stability/approved-plans-v1_4/q24a/extended.txt
+++ 
b/spark/src/test/resources/tpcds-plan-stability/approved-plans-v1_4/q24a/extended.txt
@@ -9,7 +9,7 @@ CometNativeColumnarToRow
    :                    +- CometExchange
    :                       +- CometHashAggregate
    :                          +- CometProject
-   :                             +-  CometBroadcastHashJoin [COMET-INFO: A 
native implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/compatibility.html)]
+   :                             +-  CometBroadcastHashJoin [COMET-INFO: A 
native implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/latest/compatibility/index.html)]
    :                                :- CometProject
    :                                :  +- CometBroadcastHashJoin
    :                                :     :- CometProject
@@ -51,7 +51,7 @@ CometNativeColumnarToRow
                +- CometExchange
                   +- CometHashAggregate
                      +- CometProject
-                        +-  CometBroadcastHashJoin [COMET-INFO: A native 
implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/compatibility.html)]
+                        +-  CometBroadcastHashJoin [COMET-INFO: A native 
implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/latest/compatibility/index.html)]
                            :- CometProject
                            :  +- CometBroadcastHashJoin
                            :     :- CometProject
diff --git 
a/spark/src/test/resources/tpcds-plan-stability/approved-plans-v1_4/q24b/extended.txt
 
b/spark/src/test/resources/tpcds-plan-stability/approved-plans-v1_4/q24b/extended.txt
index d285d92d0f..7cafc5725d 100644
--- 
a/spark/src/test/resources/tpcds-plan-stability/approved-plans-v1_4/q24b/extended.txt
+++ 
b/spark/src/test/resources/tpcds-plan-stability/approved-plans-v1_4/q24b/extended.txt
@@ -9,7 +9,7 @@ CometNativeColumnarToRow
    :                    +- CometExchange
    :                       +- CometHashAggregate
    :                          +- CometProject
-   :                             +-  CometBroadcastHashJoin [COMET-INFO: A 
native implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/compatibility.html)]
+   :                             +-  CometBroadcastHashJoin [COMET-INFO: A 
native implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/latest/compatibility/index.html)]
    :                                :- CometProject
    :                                :  +- CometBroadcastHashJoin
    :                                :     :- CometProject
@@ -51,7 +51,7 @@ CometNativeColumnarToRow
                +- CometExchange
                   +- CometHashAggregate
                      +- CometProject
-                        +-  CometBroadcastHashJoin [COMET-INFO: A native 
implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/compatibility.html)]
+                        +-  CometBroadcastHashJoin [COMET-INFO: A native 
implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/latest/compatibility/index.html)]
                            :- CometProject
                            :  +- CometBroadcastHashJoin
                            :     :- CometProject
diff --git 
a/spark/src/test/resources/tpcds-plan-stability/approved-plans-v2_7/q24/extended.txt
 
b/spark/src/test/resources/tpcds-plan-stability/approved-plans-v2_7/q24/extended.txt
index 0a03e76aa8..98135f6edd 100644
--- 
a/spark/src/test/resources/tpcds-plan-stability/approved-plans-v2_7/q24/extended.txt
+++ 
b/spark/src/test/resources/tpcds-plan-stability/approved-plans-v2_7/q24/extended.txt
@@ -11,7 +11,7 @@ CometNativeColumnarToRow
          :                    +- CometExchange
          :                       +- CometHashAggregate
          :                          +- CometProject
-         :                             +-  CometBroadcastHashJoin [COMET-INFO: 
A native implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/compatibility.html)]
+         :                             +-  CometBroadcastHashJoin [COMET-INFO: 
A native implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/latest/compatibility/index.html)]
          :                                :- CometProject
          :                                :  +- CometBroadcastHashJoin
          :                                :     :- CometProject
@@ -53,7 +53,7 @@ CometNativeColumnarToRow
                      +- CometExchange
                         +- CometHashAggregate
                            +- CometProject
-                              +-  CometBroadcastHashJoin [COMET-INFO: A native 
implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/compatibility.html)]
+                              +-  CometBroadcastHashJoin [COMET-INFO: A native 
implementation of Upper is available. Set 
spark.comet.caseConversion.enabled=true to enable it. For more information, 
refer to the Comet Compatibility Guide 
(https://datafusion.apache.org/comet/user-guide/latest/compatibility/index.html)]
                                  :- CometProject
                                  :  +- CometBroadcastHashJoin
                                  :     :- CometProject


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to