Re: [PR] feat: ORDER BY ALL [datafusion]

2025-05-06 Thread via GitHub
alamb commented on PR #15772: URL: https://github.com/apache/datafusion/pull/15772#issuecomment-2854191669 > This looks ready now, thanks @PokIsemaine. I'll merge it after a few hours unless someone else brings any suggestion here Thanks @PokIsemaine and @berkaysynnada - I also added

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-05-06 Thread via GitHub
berkaysynnada merged PR #15772: URL: https://github.com/apache/datafusion/pull/15772 -- 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: github-unsubscr...@

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-05-05 Thread via GitHub
berkaysynnada commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2073526461 ## datafusion/sql/src/query.rs: ## @@ -168,7 +169,27 @@ pub(crate) fn to_order_by_exprs_with_select( return not_impl_err!("ORDER BY INTERPOLATE is n

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-05-05 Thread via GitHub
PokIsemaine commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2073503557 ## datafusion/sql/src/query.rs: ## @@ -168,7 +169,27 @@ pub(crate) fn to_order_by_exprs_with_select( return not_impl_err!("ORDER BY INTERPOLATE is not

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-05-05 Thread via GitHub
berkaysynnada commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2073028935 ## datafusion/sql/src/query.rs: ## @@ -168,7 +169,27 @@ pub(crate) fn to_order_by_exprs_with_select( return not_impl_err!("ORDER BY INTERPOLATE is n

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-05-04 Thread via GitHub
PokIsemaine commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2072647351 ## datafusion/sql/src/expr/order_by.rs: ## @@ -61,13 +57,27 @@ impl SqlToRel<'_, S> { None => input_schema, }; -let mut expr_ve

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-05-04 Thread via GitHub
xudong963 commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2072637962 ## datafusion/sql/src/expr/order_by.rs: ## @@ -61,13 +57,27 @@ impl SqlToRel<'_, S> { None => input_schema, }; -let mut expr_vec

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-05-04 Thread via GitHub
xudong963 commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2072637668 ## datafusion/sql/src/expr/order_by.rs: ## @@ -61,13 +57,27 @@ impl SqlToRel<'_, S> { None => input_schema, }; -let mut expr_vec

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-05-01 Thread via GitHub
PokIsemaine commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2070204781 ## datafusion/expr/src/expr.rs: ## @@ -701,6 +701,24 @@ impl TryCast { } } +/// OrderBy Expressions +pub enum OrderByExprs { +OrderByExprVec(Vec),

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-04-30 Thread via GitHub
alamb commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2069775315 ## datafusion/expr/src/expr.rs: ## @@ -701,6 +701,24 @@ impl TryCast { } } +/// OrderBy Expressions +pub enum OrderByExprs { +OrderByExprVec(Vec), +A

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-04-21 Thread via GitHub
berkaysynnada commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2052112805 ## datafusion/expr/src/expr.rs: ## @@ -701,6 +701,24 @@ impl TryCast { } } +/// OrderBy Expressions +pub enum OrderByExprs { +OrderByExprVec(Vec)

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-04-19 Thread via GitHub
PokIsemaine commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2051632953 ## datafusion/expr/src/expr.rs: ## @@ -701,6 +701,24 @@ impl TryCast { } } +/// OrderBy Expressions +pub enum OrderByExprs { +OrderByExprVec(Vec),

Re: [PR] feat: ORDER BY ALL [datafusion]

2025-04-19 Thread via GitHub
xudong963 commented on code in PR #15772: URL: https://github.com/apache/datafusion/pull/15772#discussion_r2051496431 ## datafusion/expr/src/expr.rs: ## @@ -701,6 +701,24 @@ impl TryCast { } } +/// OrderBy Expressions +pub enum OrderByExprs { +OrderByExprVec(Vec), +

[PR] feat: ORDER BY ALL [datafusion]

2025-04-19 Thread via GitHub
PokIsemaine opened a new pull request, #15772: URL: https://github.com/apache/datafusion/pull/15772 ## Which issue does this PR close? - None ## Rationale for this change - https://github.com/apache/datafusion/issues/14514 ## What changes are includ