You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by do...@apache.org on 2021/01/16 21:41:00 UTC

[spark] branch master updated: [SPARK-34140][SQL] Move QueryCompilationErrors.scala and QueryExecutionErrors.scala to org/apache/spark/sql/errors

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

dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 0540392  [SPARK-34140][SQL] Move QueryCompilationErrors.scala and QueryExecutionErrors.scala to org/apache/spark/sql/errors
0540392 is described below

commit 05403924647b416970fcf1ba1159dc1f6ec4e71f
Author: Terry Kim <yu...@gmail.com>
AuthorDate: Sat Jan 16 13:40:21 2021 -0800

    [SPARK-34140][SQL] Move QueryCompilationErrors.scala and QueryExecutionErrors.scala to org/apache/spark/sql/errors
    
    ### What changes were proposed in this pull request?
    
    `QueryCompilationErrors.scala` and `QueryExecutionErrors.scala` use the `org.apache.spark.sql.errors` package, but these files are reside in `org/apache/spark/sql` directory. This PR proposes to move these files to `org/apache/spark/sql/errors`.
    
    ### Why are the changes needed?
    
    To match the package name with the directory structure.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No
    
    ### How was this patch tested?
    
    Existing tests
    
    Closes #31211 from imback82/error_package.
    
    Authored-by: Terry Kim <yu...@gmail.com>
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 .../scala/org/apache/spark/sql/{ => errors}/QueryCompilationErrors.scala  | 0
 .../scala/org/apache/spark/sql/{ => errors}/QueryExecutionErrors.scala    | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/QueryCompilationErrors.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/errors/QueryCompilationErrors.scala
similarity index 100%
rename from sql/catalyst/src/main/scala/org/apache/spark/sql/QueryCompilationErrors.scala
rename to sql/catalyst/src/main/scala/org/apache/spark/sql/errors/QueryCompilationErrors.scala
diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/QueryExecutionErrors.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/errors/QueryExecutionErrors.scala
similarity index 100%
rename from sql/catalyst/src/main/scala/org/apache/spark/sql/QueryExecutionErrors.scala
rename to sql/catalyst/src/main/scala/org/apache/spark/sql/errors/QueryExecutionErrors.scala


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