alamb commented on code in PR #6652: URL: https://github.com/apache/arrow-datafusion/pull/6652#discussion_r1227054891
########## datafusion/core/tests/sqllogictests/test_files/window.slt: ########## @@ -258,34 +258,37 @@ Sort: d.b ASC NULLS LAST ----Aggregate: groupBy=[[d.b]], aggr=[[MAX(d.a)]] ------SubqueryAlias: d --------SubqueryAlias: _data2 -----------SubqueryAlias: s -------------SubqueryAlias: _sample_data Review Comment: Isn't the new plan worse? Previously there is no `WindowAggr` because `seq is not used in the outer query's select list: ```sql SELECT d.b, MAX(d.a) AS max_a ``` -- 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]
