aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/compatibility
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2016-02-25 17:49:50 +0800
committerCheng Lian <lian@databricks.com>2016-02-25 17:49:50 +0800
commit2b2c8c33236677c916541f956f7b94bba014a9ce (patch)
treea7a70d1d81c2cb3959ff3f56ee0f26d3ba35d14f /sql/hive/compatibility
parent07f92ef1fa090821bef9c60689bf41909d781ee7 (diff)
downloadspark-2b2c8c33236677c916541f956f7b94bba014a9ce.tar.gz
spark-2b2c8c33236677c916541f956f7b94bba014a9ce.tar.bz2
spark-2b2c8c33236677c916541f956f7b94bba014a9ce.zip
[SPARK-13486][SQL] Move SQLConf into an internal package
## What changes were proposed in this pull request? This patch moves SQLConf into org.apache.spark.sql.internal package to make it very explicit that it is internal. Soon I will also submit more API work that creates implementations of interfaces in this internal package. ## How was this patch tested? If it compiles, then the refactoring should work. Author: Reynold Xin <rxin@databricks.com> Closes #11363 from rxin/SPARK-13486.
Diffstat (limited to 'sql/hive/compatibility')
-rw-r--r--sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala b/sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
index 973ba6bf38..d15f883138 100644
--- a/sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
+++ b/sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
@@ -23,8 +23,8 @@ import java.util.{Locale, TimeZone}
import org.apache.spark.sql.catalyst.rules.RuleExecutor
import org.scalatest.BeforeAndAfter
-import org.apache.spark.sql.SQLConf
import org.apache.spark.sql.hive.test.TestHive
+import org.apache.spark.sql.internal.SQLConf
/**
* Runs the test cases that are included in the hive distribution.