You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by rx...@apache.org on 2016/11/21 04:01:18 UTC

spark git commit: [HOTFIX][SQL] Fix DDLSuite failure.

Repository: spark
Updated Branches:
  refs/heads/master 6659ae555 -> b625a36eb


[HOTFIX][SQL] Fix DDLSuite failure.


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

Branch: refs/heads/master
Commit: b625a36ebc59cbacc223fc03005bc0f6d296b6e7
Parents: 6659ae5
Author: Reynold Xin <rx...@databricks.com>
Authored: Sun Nov 20 20:00:59 2016 -0800
Committer: Reynold Xin <rx...@databricks.com>
Committed: Sun Nov 20 20:00: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/b625a36e/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-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org