Re: [I] row-wise min and max [datafusion]

2025-06-12 Thread via GitHub
kosiew commented on issue #16366: URL: https://github.com/apache/datafusion/issues/16366#issuecomment-2969200984 @drtconway You're welcome. Can you close this issue? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub a

Re: [I] row-wise min and max [datafusion]

2025-06-12 Thread via GitHub
drtconway commented on issue #16366: URL: https://github.com/apache/datafusion/issues/16366#issuecomment-2969217442 Sure! -- 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

Re: [I] row-wise min and max [datafusion]

2025-06-12 Thread via GitHub
drtconway closed issue #16366: row-wise min and max URL: https://github.com/apache/datafusion/issues/16366 -- 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-mai

Re: [I] row-wise min and max [datafusion]

2025-06-12 Thread via GitHub
drtconway commented on issue #16366: URL: https://github.com/apache/datafusion/issues/16366#issuecomment-2969144940 Ah yes! Thank you! But they're not in the Rust part of the documentation (https://datafusion.apache.org/user-guide/expressions.html), which is why I didn't know they we

Re: [I] row-wise min and max [datafusion]

2025-06-12 Thread via GitHub
kosiew commented on issue #16366: URL: https://github.com/apache/datafusion/issues/16366#issuecomment-2968970691 ```sql DataFusion CLI v48.0.0 > -- Define sample data CREATE TABLE t1 (a INT, b INT, c INT) AS VALUES (4, NULL, NULL), (1, 2, 3), (3, 1, 2), (1, NULL,

Re: [I] row-wise min and max [datafusion]

2025-06-12 Thread via GitHub
kosiew commented on issue #16366: URL: https://github.com/apache/datafusion/issues/16366#issuecomment-2968958912 hi @drtconway , pmin sounds a lot like https://datafusion.apache.org/user-guide/sql/scalar_functions.html#least and pmax like https://datafusion.apache.org/use

[I] row-wise min and max [datafusion]

2025-06-10 Thread via GitHub
drtconway opened a new issue, #16366: URL: https://github.com/apache/datafusion/issues/16366 ### Is your feature request related to a problem or challenge? Thanks for an awesome platform! I'm really loving it! In R `pmin` and `pmax` do row-wise min and max respectively. They're