uros-b commented on code in PR #57129:
URL: https://github.com/apache/spark/pull/57129#discussion_r3588183980


##########
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/StructFilters.scala:
##########
@@ -122,15 +122,15 @@ object StructFilters {
       case sources.Or(left, right) =>
         zip(translate(left), translate(right)).map(Or.tupled)

Review Comment:
   .tupled / .curried on case companions are left untouched - the modules still 
won't compile under real Scala 3. The same Scala 3 change (case companions no 
longer extend FunctionN) also breaks Foo.tupled, since tupled is a FunctionN 
member. These remain in bare form in the touched modules. There are also 
remaining .tupled uses in NaturalAndUsingJoinResolution.scala, 
windowExpressions.scala, and subquery.scala.



-- 
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]

Reply via email to