djouallah opened a new issue, #7965:
URL: https://github.com/apache/iceberg/issues/7965
### Apache Iceberg version
None
### Query engine
Other
### Please describe the bug 🐞
using this code
```
from pyiceberg.expressions import GreaterThanOrEqual
table = catalog.load_table("examples.nyc_taxi_yellow")
con = table.scan(
selected_fields=("vendor_id","trip_distance", "pickup_time",
"dropoff_time"),
limit = 10,
).to_duckdb(table_name="distant_taxi_trips")
con.sql('select * from distant_taxi_trips')
```
limit don't seems to impact the scan speed, I was expecting the scan will
stop when it reach 10 records, currently it seems it is scanning everything
then showing only 10 records.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]