yaooqinn commented on code in PR #48842: URL: https://github.com/apache/spark/pull/48842#discussion_r1843366680
########## sql/core/src/test/resources/sql-tests/inputs/udf/udf-union.sql: ########## @@ -11,7 +11,7 @@ FROM (SELECT udf(c1) as c1, udf(c2) as c2 FROM t1 -- Type Coerced Union SELECT udf(c1) as c1, udf(c2) as c2 -FROM (SELECT udf(c1) as c1, udf(c2) as c2 FROM t1 +FROM (SELECT udf(c1) as c1, udf(c2) as c2 FROM t1 WHERE c2 = 'a' Review Comment: stabilize error ########## sql/core/src/test/resources/sql-tests/inputs/pipe-operators.sql: ########## @@ -548,7 +548,8 @@ values (0, 'abc') tab(x, y) -- Union distinct with a VALUES list. values (0, 1) tab(x, y) -|> union table t; +|> union table t +|> where x = 0; Review Comment: stabilize error -- 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]
