yew1eb opened a new issue, #1746: URL: https://github.com/apache/auron/issues/1746
Current convertTakeOrderedAndProjectExec inserts an extra NativeProjectExec even when the result is collected to driver via executeCollect, For queries like: ``` SELECT id + 42, name, length(name) FROM t1 order by id limit 4 ``` <img width="518" height="922" alt="Image" src="https://github.com/user-attachments/assets/2c5a4087-ef36-414f-bc42-a74b2d45fe57" /> refactor NativeTakeOrderedExec to NativeTakeOrderedAndProjectExec that natively handles the `projection List`, so we can completely eliminate the redundant NativeProjectExec. -- 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]
