yaooqinn commented on a change in pull request #26359: [SPARK-29713][SQL] 
Support Interval Unit Abbreviations in Interval Literals
URL: https://github.com/apache/spark/pull/26359#discussion_r341692726
 
 

 ##########
 File path: 
sql/core/src/test/resources/sql-tests/inputs/higher-order-functions.sql
 ##########
 @@ -11,10 +11,10 @@ select upper(x -> x) as v;
 select transform(zs, z -> z) as v from nested;
 
 -- Transform an array
-select transform(ys, y -> y * y) as v from nested;
+select transform(ys, y1 -> y1 * y1) as v from nested;
 
 Review comment:
   I just found out that all non reversed keywords can not be used in high 
order functions,is this a bug??also cc @cloud-fan 

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to