aboutsummaryrefslogtreecommitdiff
path: root/sql/hive
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2015-11-19 14:48:18 -0800
committerReynold Xin <rxin@databricks.com>2015-11-19 14:48:18 -0800
commit014c0f7a9dfdb1686fa9aeacaadb2a17a855a943 (patch)
tree04a6a7ee86f6dfb5abe824bb0f5e51330fb3fb60 /sql/hive
parent599a8c6e2bf7da70b20ef3046f5ce099dfd637f8 (diff)
downloadspark-014c0f7a9dfdb1686fa9aeacaadb2a17a855a943.tar.gz
spark-014c0f7a9dfdb1686fa9aeacaadb2a17a855a943.tar.bz2
spark-014c0f7a9dfdb1686fa9aeacaadb2a17a855a943.zip
[SPARK-11858][SQL] Move sql.columnar into sql.execution.
In addition, tightened visibility of a lot of classes in the columnar package from private[sql] to private[columnar]. Author: Reynold Xin <rxin@databricks.com> Closes #9842 from rxin/SPARK-11858.
Diffstat (limited to 'sql/hive')
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/CachedTableSuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/CachedTableSuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/CachedTableSuite.scala
index 5c2fc7d82f..99478e82d4 100644
--- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/CachedTableSuite.scala
+++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/CachedTableSuite.scala
@@ -19,7 +19,7 @@ package org.apache.spark.sql.hive
import java.io.File
-import org.apache.spark.sql.columnar.InMemoryColumnarTableScan
+import org.apache.spark.sql.execution.columnar.InMemoryColumnarTableScan
import org.apache.spark.sql.execution.datasources.parquet.ParquetRelation
import org.apache.spark.sql.hive.test.TestHiveSingleton
import org.apache.spark.sql.{AnalysisException, QueryTest, SaveMode}