Skip to content
Snippets Groups Projects
Commit b625a36e authored by Reynold Xin's avatar Reynold Xin
Browse files

[HOTFIX][SQL] Fix DDLSuite failure.

parent 6659ae55
No related branches found
No related tags found
No related merge requests found
......@@ -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(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment