aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src/test/scala
diff options
context:
space:
mode:
authorjiangxingbo <jiangxb1987@gmail.com>2017-03-08 16:18:17 +0100
committerHerman van Hovell <hvanhovell@databricks.com>2017-03-08 16:18:17 +0100
commit5f7d835d380c1a558a4a6d8366140cd96ee202eb (patch)
tree98f4c270441514df0bba2c3dc20d5e610f03cab9 /sql/core/src/test/scala
parente44274870dee308f4e3e8ce79457d8d19693b6e5 (diff)
downloadspark-5f7d835d380c1a558a4a6d8366140cd96ee202eb.tar.gz
spark-5f7d835d380c1a558a4a6d8366140cd96ee202eb.tar.bz2
spark-5f7d835d380c1a558a4a6d8366140cd96ee202eb.zip
[SPARK-19865][SQL] remove the view identifier in SubqueryAlias
## What changes were proposed in this pull request? Since we have a `View` node now, we can remove the view identifier in `SubqueryAlias`, which was used to indicate a view node before. ## How was this patch tested? Update the related test cases. Author: jiangxingbo <jiangxb1987@gmail.com> Closes #17210 from jiangxb1987/SubqueryAlias.
Diffstat (limited to 'sql/core/src/test/scala')
-rw-r--r--sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala
index 9c55357ab9..26c45e092d 100644
--- a/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala
+++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala
@@ -22,15 +22,12 @@ import scala.reflect.ClassTag
import org.apache.spark.AccumulatorSuite
import org.apache.spark.sql.{Dataset, QueryTest, Row, SparkSession}
import org.apache.spark.sql.catalyst.expressions.{BitwiseAnd, BitwiseOr, Cast, Literal, ShiftLeft}
-import org.apache.spark.sql.catalyst.plans.logical.SubqueryAlias
-import org.apache.spark.sql.catalyst.TableIdentifier
import org.apache.spark.sql.execution.exchange.EnsureRequirements
import org.apache.spark.sql.execution.SparkPlan
import org.apache.spark.sql.functions._
import org.apache.spark.sql.internal.SQLConf
import org.apache.spark.sql.test.SQLTestUtils
import org.apache.spark.sql.types.{LongType, ShortType}
-import org.apache.spark.util.Utils
/**
* Test various broadcast join operators.