gengliangwang commented on code in PR #37254:
URL: https://github.com/apache/spark/pull/37254#discussion_r934248067
##########
sql/core/src/test/scala/org/apache/spark/sql/jdbc/JDBCV2Suite.scala:
##########
@@ -1939,7 +1939,7 @@ class JDBCV2Suite extends QueryTest with
SharedSparkSession with ExplainSuiteHel
"COUNT(CASE WHEN (SALARY > 8000.00) AND (SALARY <= 13000.00) THEN
SALARY ELSE 0.00 END), " +
"COUNT(CASE WHEN (SALARY > 11000.00) OR (SALARY < 10000.00) THEN
SALARY ELSE 0.00 END), " +
"COUNT(CASE WHEN (SALARY >= 12000.00) OR (SALARY < 9000.00) THEN
SALARY ELSE 0.00 END), " +
- "MAX(CASE WHEN (SALARY <= 10000.00) AND (SALARY >= 8000.00) THEN
SALARY ELSE 0.00 END), " +
+ "MAX(CASE WHEN (SALARY >= 8000.00) AND (SALARY <= 10000.00) THEN
SALARY ELSE 0.00 END), " +
Review Comment:
Why do we need to change this?
--
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]