Re: [I] bug: TableScanBuilder should take care of empty projections [iceberg-rust]

2024-10-25 Thread via GitHub
liurenjie1024 closed issue #676: bug: TableScanBuilder should take care of empty projections URL: https://github.com/apache/iceberg-rust/issues/676 -- 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 t

Re: [I] bug: TableScanBuilder should take care of empty projections [iceberg-rust]

2024-10-21 Thread via GitHub
sundy-li commented on issue #676: URL: https://github.com/apache/iceberg-rust/issues/676#issuecomment-2426037360 /assign me -- 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.

Re: [I] bug: TableScanBuilder should take care of empty projections [iceberg-rust]

2024-10-21 Thread via GitHub
Xuanwo commented on issue #676: URL: https://github.com/apache/iceberg-rust/issues/676#issuecomment-2426042910 Thank you @sundy-li for working on this! -- 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 g

[I] bug: TableScanBuilder should take care of empty projections [iceberg-rust]

2024-10-21 Thread via GitHub
sundy-li opened a new issue, #676: URL: https://github.com/apache/iceberg-rust/issues/676 For query `select count() from table`, the project is empty, so table should not scan any columns and return an RecordBatch with empty arrays and the true row count. Yet it scans all columns.