You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by we...@apache.org on 2019/05/15 07:24:43 UTC

[spark] branch master updated: [SPARK-27713][SQL] Move org.apache.spark.sql.execution.* in catalyst to core

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

wenchen 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 fd9acf2  [SPARK-27713][SQL] Move org.apache.spark.sql.execution.* in catalyst to core
fd9acf2 is described below

commit fd9acf23b03e13d9422937b4b73c434baa92b34f
Author: xy_xin <xi...@alibaba-inc.com>
AuthorDate: Wed May 15 15:24:21 2019 +0800

    [SPARK-27713][SQL] Move org.apache.spark.sql.execution.* in catalyst to core
    
    ## What changes were proposed in this pull request?
    
    `RecordBinaryComparator`, `UnsafeExternalRowSorter` and `UnsafeKeyValueSorter` now locates in catalyst, which should be moved to core, as they're used only in physical plan.
    
    ## How was this patch tested?
    
    exist tests.
    
    Closes #24607 from xianyinxin/SPARK-27713.
    
    Authored-by: xy_xin <xi...@alibaba-inc.com>
    Signed-off-by: Wenchen Fan <we...@databricks.com>
---
 .../main/java/org/apache/spark/sql/execution/RecordBinaryComparator.java  | 0
 .../main/java/org/apache/spark/sql/execution/UnsafeExternalRowSorter.java | 0
 .../main/java/org/apache/spark/sql/execution/UnsafeKeyValueSorter.java    | 0
 3 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/sql/catalyst/src/main/java/org/apache/spark/sql/execution/RecordBinaryComparator.java b/sql/core/src/main/java/org/apache/spark/sql/execution/RecordBinaryComparator.java
similarity index 100%
rename from sql/catalyst/src/main/java/org/apache/spark/sql/execution/RecordBinaryComparator.java
rename to sql/core/src/main/java/org/apache/spark/sql/execution/RecordBinaryComparator.java
diff --git a/sql/catalyst/src/main/java/org/apache/spark/sql/execution/UnsafeExternalRowSorter.java b/sql/core/src/main/java/org/apache/spark/sql/execution/UnsafeExternalRowSorter.java
similarity index 100%
rename from sql/catalyst/src/main/java/org/apache/spark/sql/execution/UnsafeExternalRowSorter.java
rename to sql/core/src/main/java/org/apache/spark/sql/execution/UnsafeExternalRowSorter.java
diff --git a/sql/catalyst/src/main/java/org/apache/spark/sql/execution/UnsafeKeyValueSorter.java b/sql/core/src/main/java/org/apache/spark/sql/execution/UnsafeKeyValueSorter.java
similarity index 100%
rename from sql/catalyst/src/main/java/org/apache/spark/sql/execution/UnsafeKeyValueSorter.java
rename to sql/core/src/main/java/org/apache/spark/sql/execution/UnsafeKeyValueSorter.java


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