pingsutw opened a new issue, #12206:
URL: https://github.com/apache/datafusion/issues/12206

   ### Is your feature request related to a problem or challenge?
   
   Similar to https://github.com/duckdb/duckdb/discussions/6717. It would be 
awesome if datafusion could support function chaining as well.
   
   Instead of 
   ```sql
   SELECT list_aggregate( list_filter( numbers,  x -> x > 40 ) , 'count') as 
greater_than_40s 
   FROM relation
   ```
   
   function chaining
   ```sql
   SELECT numbers.filter( x -> x > 40).aggregate('count') as greater_than_40s 
   FROM relation
   ```
   
   
   ### Describe the solution you'd like
   
   _No response_
   
   ### Describe alternatives you've considered
   
   use current syntax
   
   ### Additional context
   
   https://github.com/duckdb/duckdb/pull/6725


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