You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2021/03/11 00:24:49 UTC

[GitHub] [spark] karenfeng commented on a change in pull request #31619: [SPARK-33600][SQL] Group exception messages in execution/datasources/v2

karenfeng commented on a change in pull request #31619:
URL: https://github.com/apache/spark/pull/31619#discussion_r591976918



##########
File path: sql/catalyst/src/main/scala/org/apache/spark/sql/execution/QueryExecutionException.scala
##########
@@ -17,5 +17,7 @@
 
 package org.apache.spark.sql.execution
 
+import org.apache.spark.SparkException
+
 class QueryExecutionException(message: String, cause: Throwable = null)
-  extends Exception(message, cause)
+  extends SparkException(message, cause)

Review comment:
       I moved this to inside `catalyst` so that it would be visible; I don't think this should be problematic as the package is still the same.




----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org