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/16 10:22:43 UTC

[spark] branch master updated: [SPARK-27722][SQL] removed the unsed "UnsafeKeyValueSorter" file.

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 c6a45e6  [SPARK-27722][SQL] removed the unsed "UnsafeKeyValueSorter" file.
c6a45e6 is described below

commit c6a45e6f67abc99d1953d915b96e65a3e2148cf1
Author: shivusondur <sh...@gmail.com>
AuthorDate: Thu May 16 18:22:06 2019 +0800

    [SPARK-27722][SQL] removed the unsed "UnsafeKeyValueSorter" file.
    
    ## What changes were proposed in this pull request?
    
    removed the unused "UnsafeKeyValueSorter.java" file
    
    ## How was this patch tested?
    
    Ran Compilation and UT locally.
    
    Please review http://spark.apache.org/contributing.html before opening a pull request.
    
    Closes #24622 from shivusondur/jira27722.
    
    Authored-by: shivusondur <sh...@gmail.com>
    Signed-off-by: Wenchen Fan <we...@databricks.com>
---
 .../spark/sql/execution/UnsafeKeyValueSorter.java  | 30 ----------------------
 1 file changed, 30 deletions(-)

diff --git a/sql/core/src/main/java/org/apache/spark/sql/execution/UnsafeKeyValueSorter.java b/sql/core/src/main/java/org/apache/spark/sql/execution/UnsafeKeyValueSorter.java
deleted file mode 100644
index 59c774d..0000000
--- a/sql/core/src/main/java/org/apache/spark/sql/execution/UnsafeKeyValueSorter.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.spark.sql.execution;
-
-import java.io.IOException;
-
-import org.apache.spark.sql.catalyst.expressions.UnsafeRow;
-import org.apache.spark.unsafe.KVIterator;
-
-public abstract class UnsafeKeyValueSorter {
-
-  public abstract void insert(UnsafeRow key, UnsafeRow value);
-
-  public abstract KVIterator<UnsafeRow, UnsafeRow> sort() throws IOException;
-}


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