fresh-borzoni opened a new issue, #149: URL: https://github.com/apache/fluss-rust/issues/149
### Search before asking - [x] I searched in the [issues](https://github.com/apache/fluss-rust/issues) and found nothing similar. ### Motivation Add column projection support for better performance and more Pythonic API than C++ bindings. ## Methods to Add ### 1. By index (C++ parity) ```python scanner = table.new_log_scanner_with_projection([0, 2, 4]) ``` 2. By name (Python-specific, more idiomatic) ```python scanner = table.new_log_scanner_with_column_names(["id", "name", "email"]) ``` Python users expect to work with column names, not indices. This goes beyond C++ parity for better ergonomics. ### Solution Implement them :) ### Anything else? _No response_ ### Willingness to contribute - [x] I'm willing to submit a PR! -- 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]
