HyukjinKwon opened a new pull request #28732:
URL: https://github.com/apache/spark/pull/28732


   ### What changes were proposed in this pull request?
   
   This PR proposes to add one more newline to clearly separate JVM and Python 
tracebacks:
   
   Before:
   
   ```
   Traceback (most recent call last):
     ...
   pyspark.sql.utils.AnalysisException: Reference 'column' is ambiguous, could 
be: column, column.;
   JVM stacktrace:
   org.apache.spark.sql.AnalysisException: Reference 'column' is ambiguous, 
could be: column, column.;
     ...
   ```
   
   After:
   
   ```
   Traceback (most recent call last):
     ...
   pyspark.sql.utils.AnalysisException: Reference 'column' is ambiguous, could 
be: column, column.;
   
   JVM stacktrace:
   org.apache.spark.sql.AnalysisException: Reference 'column' is ambiguous, 
could be: column, column.;
     ...
   ```
   
   This is kind of a followup of 
https://github.com/apache/spark/commit/e69466056fb2c121b7bbb6ad082f09deb1c41063 
(SPARK-31849).
   
   ### Why are the changes needed?
   
   To make it easier to read.
   
   ### Does this PR introduce _any_ user-facing change?
   
   It's in the unreleased branches.
   
   ### How was this patch tested?
   
   Manually tested.


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



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

Reply via email to