cloud-fan commented on a change in pull request #35761:
URL: https://github.com/apache/spark/pull/35761#discussion_r821427594
##########
File path:
sql/core/src/test/scala/org/apache/spark/sql/DataFrameFunctionsSuite.scala
##########
@@ -1638,10 +1648,12 @@ class DataFrameFunctionsSuite extends QueryTest with
SharedSparkSession {
// Simple test cases
def simpleTest(): Unit = {
- checkAnswer (
- df.select(concat($"i1", $"s1")),
- Seq(Row(Seq("1", "a", "b", "c")), Row(Seq("1", "0", "a")))
- )
+ if (!conf.ansiEnabled) {
+ checkAnswer(
+ df.select(concat($"i1", $"s1")),
Review comment:
what's wrong with this under ANSI mode?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]