Skip to content

Commit

Permalink
[SPARK-13882][SQL] Remove org.apache.spark.sql.execution.local
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?
We introduced some local operators in org.apache.spark.sql.execution.local package but never fully wired the engine to actually use these. We still plan to implement a full local mode, but it's probably going to be fairly different from what the current iterator-based local mode would look like. Based on what we know right now, we might want a push-based columnar version of these operators.

Let's just remove them for now, and we can always re-introduced them in the future by looking at branch-1.6.

## How was this patch tested?
This is simply dead code removal.

Author: Reynold Xin <rxin@databricks.com>

Closes apache#11705 from rxin/SPARK-13882.
  • Loading branch information
rxin authored and roygao94 committed Mar 22, 2016
1 parent b6bada3 commit e111d78
Show file tree
Hide file tree
Showing 30 changed files with 0 additions and 2,060 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import org.apache.spark.sql.catalyst.InternalRow
import org.apache.spark.sql.catalyst.expressions._
import org.apache.spark.sql.catalyst.plans.physical.BroadcastMode
import org.apache.spark.sql.execution.SparkSqlSerializer
import org.apache.spark.sql.execution.local.LocalNode
import org.apache.spark.unsafe.Platform
import org.apache.spark.unsafe.map.BytesToBytesMap
import org.apache.spark.util.{KnownSizeEstimation, SizeEstimator, Utils}
Expand Down Expand Up @@ -157,10 +156,6 @@ private[joins] class UniqueKeyHashedRelation(

private[execution] object HashedRelation {

def apply(localNode: LocalNode, keyGenerator: Projection): HashedRelation = {
apply(localNode.asIterator, keyGenerator)
}

def apply(
input: Iterator[InternalRow],
keyGenerator: Projection,
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit e111d78

Please sign in to comment.