This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/cargo/rust/arrow-datafusion-e229f9488e
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
discard f85ad50d8 chore(rust): Bump the arrow-datafusion group across 1
directory with 4 updates
add ea215efb3 chore(java): Bump com.github.ben-manes.caffeine:caffeine
from 3.2.2 to 3.2.3 in /java (#3666)
add 45c66f27b chore(java): Bump com.uber.nullaway:nullaway from 0.12.10 to
0.12.11 in /java (#3667)
add 172f6aa0b chore(go/adbc): Bump cloud.google.com/go/bigquery from
1.71.0 to 1.72.0 in /go/adbc (#3668)
add f6c107777 chore(go/adbc): Bump google.golang.org/api from 0.253.0 to
0.254.0 in /go/adbc (#3670)
add 62c59dc85 chore(go/adbc): Bump modernc.org/sqlite from 1.39.1 to
1.40.0 in /go/adbc (#3669)
add 5be5ca7f3 chore(rust): Bump test-with from 0.15.4 to 0.15.5 in /rust
(#3678)
add d18e84db9 feat(csharp/Benchmarks): Add .NET Framework 4.7.2 support
with TLS co… (#3682)
add 131b3d260 fix(c/driver_manager): look for correct init symbol name
(#3681)
add 12deb28cd fix(dev/release): fix wheel verification failure on macOS
due to SIP (#3686)
add 9999dabce feat(csharp/Benchmarks): Add custom columns for CloudFetch
benchmark metrics (#3688)
add ef8c48589 feat(csharp/src/Drivers/Databricks): Added connection params
of rateLimitRetry and rateLimitRetryTimeout (#3612)
add 3d3bb0e5f feat(csharp/src/Drivers/BigQuery): Add support for
overriding adbc.bigquery.large_decimals_as_string (#3648)
add ac4b890e2 fix(csharp/src/Drivers/Databricks): Reduce LZ4 decompression
memory by using Custom Array Pool (#3654)
add da3718897 feat(csharp/src/Drivers/Databricks): CloudFetch Use
RecyclableMemoryStream for LZ4 decompression to reduce memory pressure (#3683)
add 320fd6ef4 fix(rust/driver_manager): remove optional property for
windows deps (#3693)
add 99549fe92 chore(rust): Bump the arrow-datafusion group across 1
directory with 4 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 (f85ad50d8)
\
N -- N -- N
refs/heads/dependabot/cargo/rust/arrow-datafusion-e229f9488e (99549fe92)
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_manager/CMakeLists.txt | 20 ++
c/driver_manager/adbc_driver_manager.cc | 54 ++++--
c/driver_manager/adbc_driver_manager_test.cc | 31 ++++
c/{include/adbc.h => driver_manager/entrypoint.c} | 9 +-
c/validation/adbc_validation_util.h | 13 ++
ci/scripts/python_util.sh | 5 +-
csharp/Benchmarks/Benchmarks.csproj | 3 +-
csharp/Benchmarks/CloudFetchBenchmarkRunner.cs | 11 +-
.../Databricks/CloudFetchRealE2EBenchmark.cs | 201 +++++++++++++++++++--
csharp/Benchmarks/Databricks/README.md | 48 +++--
csharp/Directory.Packages.props | 1 +
csharp/src/Drivers/BigQuery/BigQueryConnection.cs | 12 +-
.../Apache.Arrow.Adbc.Drivers.Databricks.csproj | 1 +
.../Drivers/Databricks/CustomLZ4DecoderStream.cs | 152 ++++++++++++++++
.../src/Drivers/Databricks/CustomLZ4FrameReader.cs | 80 ++++++++
.../src/Drivers/Databricks/DatabricksConnection.cs | 78 +++++++-
.../src/Drivers/Databricks/DatabricksDatabase.cs | 21 ++-
.../src/Drivers/Databricks/DatabricksParameters.cs | 18 +-
csharp/src/Drivers/Databricks/Lz4Utilities.cs | 76 ++++++--
.../Reader/CloudFetch/CloudFetchDownloader.cs | 19 +-
.../Drivers/Databricks/Reader/DatabricksReader.cs | 4 +-
csharp/src/Drivers/Databricks/RetryHttpHandler.cs | 79 +++++---
.../Drivers/BigQuery/BigQueryTestConfiguration.cs | 3 +
.../test/Drivers/BigQuery/BigQueryTestingUtils.cs | 2 +
.../Databricks/Unit/RetryHttpHandlerTest.cs | 83 ++++++++-
go/adbc/drivermgr/adbc_driver_manager.cc | 54 ++++--
go/adbc/go.mod | 8 +-
go/adbc/go.sum | 16 +-
java/driver/flight-sql/pom.xml | 2 +-
java/pom.xml | 2 +-
rust/Cargo.lock | 4 +-
rust/driver/snowflake/Cargo.toml | 2 +-
rust/driver_manager/Cargo.toml | 4 +-
33 files changed, 967 insertions(+), 149 deletions(-)
copy c/{include/adbc.h => driver_manager/entrypoint.c} (81%)
create mode 100644 csharp/src/Drivers/Databricks/CustomLZ4DecoderStream.cs
create mode 100644 csharp/src/Drivers/Databricks/CustomLZ4FrameReader.cs