alexguo-db opened a new issue, #2612:
URL: https://github.com/apache/arrow-adbc/issues/2612
### What feature or improvement would you like to see?
For Spark ADBC Driver, trim arrow batches to limit by default. This is
enabled by default on Databricks JDBC driver
Current behavior:
```
dotnet run "SELECT * FROM main.schema.table LIMIT 11000"
Connected to Databricks successfully.
Read 4096 rows.
Read 4096 rows.
Read 2129 rows.
Read 4096 rows.
Read 14417 rows.
```
Expected behavior:
```
dotnet run "SELECT * FROM main.schema.table LIMIT 11000"
Connected to Databricks successfully.
Read 4096 rows.
Read 4096 rows.
Read 2129 rows.
Read 679 rows.
Read 11000 rows.
```
--
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]