Repository: spark
Updated Branches:
  refs/heads/branch-2.0 d34c0fc10 -> 0ade44cc4


[HOTFIX] DDLSuite was broken by 93e9714


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0ade44cc
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0ade44cc
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0ade44cc

Branch: refs/heads/branch-2.0
Commit: 0ade44cc45ca01899e81cc2bc377cc5fa63e914b
Parents: d34c0fc
Author: Andrew Or <and...@databricks.com>
Authored: Tue May 31 20:06:08 2016 -0700
Committer: Andrew Or <and...@databricks.com>
Committed: Tue May 31 20:06:55 2016 -0700

----------------------------------------------------------------------
 .../org/apache/spark/sql/execution/command/DDLSuite.scala    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/0ade44cc/sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala
----------------------------------------------------------------------
diff --git 
a/sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala 
b/sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala
index 5d45cfb..dd1f598 100644
--- 
a/sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala
+++ 
b/sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala
@@ -1179,11 +1179,11 @@ class DDLSuite extends QueryTest with SharedSQLContext 
with BeforeAndAfterEach {
       var message = intercept[AnalysisException] {
         sql(s"INSERT OVERWRITE TABLE $tabName SELECT 1, 'a'")
       }.getMessage
-      assert(message.contains("Please enable Hive support when inserting the 
regular tables"))
+      assert(message.contains("Hive support is required to insert into the 
following tables"))
       message = intercept[AnalysisException] {
         sql(s"SELECT * FROM $tabName")
       }.getMessage
-      assert(message.contains("Please enable Hive support when selecting the 
regular tables"))
+      assert(message.contains("Hive support is required to select over the 
following tables"))
     }
   }
 
@@ -1205,11 +1205,11 @@ class DDLSuite extends QueryTest with SharedSQLContext 
with BeforeAndAfterEach {
         var message = intercept[AnalysisException] {
           sql(s"INSERT OVERWRITE TABLE $tabName SELECT 1, 'a'")
         }.getMessage
-        assert(message.contains("Please enable Hive support when inserting the 
regular tables"))
+        assert(message.contains("Hive support is required to insert into the 
following tables"))
         message = intercept[AnalysisException] {
           sql(s"SELECT * FROM $tabName")
         }.getMessage
-        assert(message.contains("Please enable Hive support when selecting the 
regular tables"))
+        assert(message.contains("Hive support is required to select over the 
following tables"))
       }
     }
   }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to