This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/cargo/rust/arrow-datafusion-1386010eab
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
discard 2777a2487 chore(rust): bump the arrow-datafusion group in /rust with 6
updates
add f68b23a30 feat(csharp/src/Drivers/Apache): Enabled Standard protocol
for Spark and used SASL transport with basic auth (#3380)
add 345299434 fix(csharp/src/Drivers/BigQuery): Include try/catch for
InvalidOperationException in ReadRowsStream (#3361)
add 5238995e7 fix(csharp/src/Drivers/Apache/Spark): fix column metadata
index offset for Spark standard (#3392)
add e4404e761 feat(c/driver_manager): improve error reporting for
manifests (#3386)
add 39cf47f87 fix(python/adbc_driver_manager): mark calls with nogil
(#3321)
add 6e23ec9e6 docs: rework driver manager references across docs (#3388)
add c5d1a7c6d docs: minor improvements to driver_manifests.rst (#3394)
add e5c6025fc fix(python/adbc_driver_manager): handle empty params in
executemany (#3332)
add 6ce20ab8a feat(c/driver_manager,rust/driver_manager): add manifest
version check (#3393)
add d44e3616d feat(c/driver/sqlite,python/adbc_driver_manager): bind
params by name (#3362)
add 65c5d35be chore(rust): bump the arrow-datafusion group in /rust with 6
updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (2777a2487)
\
N -- N -- N
refs/heads/dependabot/cargo/rust/arrow-datafusion-1386010eab (65c5d35be)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
c/driver/sqlite/sqlite.cc | 17 +-
c/driver/sqlite/sqlite_test.cc | 38 ++-
c/driver/sqlite/statement_reader.c | 56 +++-
c/driver/sqlite/statement_reader.h | 4 +
c/driver_manager/adbc_driver_manager.cc | 306 +++++++++++++++++----
c/driver_manager/adbc_driver_manager_test.cc | 170 +++++++++++-
csharp/src/Drivers/Apache/Spark/SparkConnection.cs | 10 +
.../Drivers/Apache/Spark/SparkConnectionFactory.cs | 3 +-
.../Drivers/Apache/Spark/SparkHttpConnection.cs | 7 -
.../Apache/Spark/SparkStandardConnection.cs | 92 ++++++-
csharp/src/Drivers/BigQuery/BigQueryStatement.cs | 62 +++--
csharp/src/Drivers/BigQuery/RetryManager.cs | 4 +-
.../test/Drivers/Apache/ApacheTestConfiguration.cs | 9 +
.../Drivers/Apache/Spark/SparkConnectionTest.cs | 51 +++-
.../Drivers/Apache/Spark/SparkTestEnvironment.cs | 27 ++
csharp/test/Drivers/Apache/Spark/StatementTests.cs | 1 +
.../Drivers/BigQuery/BigQueryStatementTests.cs | 173 ++++++++++++
docs/source/cpp/driver_manager.rst | 5 +-
.../cpp/recipe_driver/driver_example.toml.in | 2 +
docs/source/driver/installation.rst | 2 +-
docs/source/format/driver_manifests.rst | 82 +++---
docs/source/format/versioning.rst | 12 +
docs/source/glossary.rst | 39 ++-
docs/source/java/driver_manager.rst | 2 +
docs/source/python/driver_manager.rst | 69 +++--
docs/source/python/quickstart.rst | 4 +-
docs/source/rust/driver_manager.rst | 24 +-
go/adbc/drivermgr/adbc_driver_manager.cc | 306 +++++++++++++++++----
.../adbc_driver_manager/__init__.py | 2 +
.../adbc_driver_manager/_dbapi_backend.py | 69 +++--
.../adbc_driver_manager/_lib.pyx | 236 ++++++++++------
.../adbc_driver_manager/dbapi.py | 70 ++++-
python/adbc_driver_manager/tests/test_dbapi.py | 70 ++++-
.../tests/test_dbapi_polars_nopyarrow.py | 79 ++++++
python/adbc_driver_manager/tests/test_lowlevel.py | 2 +-
.../tests/testthat/test-driver_void.R | 2 +
rust/driver_manager/src/lib.rs | 47 ++++
37 files changed, 1753 insertions(+), 401 deletions(-)
create mode 100644 csharp/test/Drivers/BigQuery/BigQueryStatementTests.cs