fresh-borzoni opened a new pull request, #294:
URL: https://github.com/apache/fluss-rust/pull/294
---
Summary
- Add ProjectByName to CPP TableScan, bringing parity with Rust and Python
- Rename Project → ProjectByIndex for a symmetric API pair
- Name resolution happens on the C++ side via get_table_info_from_table()
schema, no Rust FFI changes needed
// By index (renamed)
table.NewScan().ProjectByIndex({0, 7}).CreateLogScanner(scanner);
// By name (new)
table.NewScan().ProjectByName({"id",
"updated_at"}).CreateLogScanner(scanner);
--
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]