-
- Downloads
[SPARK-18259][SQL] Do not capture Throwable in QueryExecution
## What changes were proposed in this pull request? `QueryExecution.toString` currently captures `java.lang.Throwable`s; this is far from a best practice and can lead to confusing situation or invalid application states. This PR fixes this by only capturing `AnalysisException`s. ## How was this patch tested? Added a `QueryExecutionSuite`. Author: Herman van Hovell <hvanhovell@databricks.com> Closes #15760 from hvanhovell/SPARK-18259.
Showing
- sql/core/src/main/scala/org/apache/spark/sql/execution/QueryExecution.scala 1 addition, 1 deletion...scala/org/apache/spark/sql/execution/QueryExecution.scala
- sql/core/src/test/scala/org/apache/spark/sql/execution/QueryExecutionSuite.scala 50 additions, 0 deletions.../org/apache/spark/sql/execution/QueryExecutionSuite.scala
Please register or sign in to comment