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 <shivuson...@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 <shivuson...@gmail.com> Signed-off-by: Wenchen Fan <wenc...@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-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org