Repository: spark
Updated Branches:
  refs/heads/branch-2.1 cffaf5035 -> f8662db72


[HOTFIX][SQL] Fix DDLSuite failure.

(cherry picked from commit b625a36ebc59cbacc223fc03005bc0f6d296b6e7)
Signed-off-by: Reynold Xin <r...@databricks.com>


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

Branch: refs/heads/branch-2.1
Commit: f8662db72815b9c89f2448511d117e6d224e0b11
Parents: cffaf50
Author: Reynold Xin <r...@databricks.com>
Authored: Sun Nov 20 20:00:59 2016 -0800
Committer: Reynold Xin <r...@databricks.com>
Committed: Sun Nov 20 20:01:59 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/spark/blob/f8662db7/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 a010739..02d9d15 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
@@ -1426,8 +1426,8 @@ class DDLSuite extends QueryTest with SharedSQLContext 
with BeforeAndAfterEach {
       sql("DESCRIBE FUNCTION 'concat'"),
       Row("Class: org.apache.spark.sql.catalyst.expressions.Concat") ::
         Row("Function: concat") ::
-        Row("Usage: concat(str1, str2, ..., strN) " +
-          "- Returns the concatenation of `str1`, `str2`, ..., `strN`.") :: Nil
+        Row("Usage: concat(str1, str2, ..., strN) - " +
+            "Returns the concatenation of str1, str2, ..., strN.") :: Nil
     )
     // extended mode
     checkAnswer(


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

Reply via email to