This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/error_prone_core.version-2.45.0
in repository https://gitbox.apache.org/repos/asf/arrow-java.git
discard 24a14913e MINOR: Bump error_prone_core.version from 2.42.0 to 2.45.0
add 9dc1410a3 MINOR: Bump dep.hadoop.version from 3.4.1 to 3.4.2 (#915)
add 033ecc3f1 GH-110: bind StringView/BinaryView for Flight SQL JDBC (#905)
add 2329174e0 GH-863: [JDBC] Suppress benign exceptions from gRPC layer on
ArrowFlightSqlClientHandler#close (#910)
add 92816711d MINOR: [CI] Bump actions/upload-artifact from 5.0.0 to 6.0.0
(#934)
add 8f616f474 MINOR: [CI] Bump actions/download-artifact from 6.0.0 to
7.0.0 (#935)
add 96156ccc2 MINOR: [CI] Bump actions/cache from 4 to 5 (#936)
add 8d1802cef GH-399: Check for null writers in
DenseUnionWriter#setPosition (#938)
add 385b51eb5 MINOR: Update macos amd64 runner (#940)
add b9e40fa0a GH-942: Fix JDBC Connection.setCatalog() (#943)
add 94dfea8cb GH-951: Fix CI completely, especially JNI on Windows 2022
and MacOS platforms (#925)
add 007744191 MINOR: Bump checker.framework.version from 3.52.0 to 3.52.1
(#927)
add 32ea946a9 MINOR: Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to
0.8.14 (#924)
add fed08c5dc MINOR: Bump error_prone_core.version from 2.42.0 to 2.45.0
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 (24a14913e)
\
N -- N -- N
refs/heads/dependabot/maven/error_prone_core.version-2.45.0 (fed08c5dc)
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:
.github/workflows/dev.yml | 2 +-
.github/workflows/rc.yml | 40 +++---
.github/workflows/test.yml | 6 +-
.gitignore | 2 +
ci/scripts/jni_macos_build.sh | 4 +-
.../arrow/driver/jdbc/ArrowFlightMetaImpl.java | 23 ++-
.../accessor/ArrowFlightJdbcAccessorFactory.java | 8 ++
.../ArrowFlightJdbcBinaryVectorAccessor.java | 8 ++
.../text/ArrowFlightJdbcVarCharVectorAccessor.java | 8 ++
.../jdbc/client/ArrowFlightSqlClientHandler.java | 159 ++++++++++++++++-----
.../impl/BinaryViewAvaticaParameterConverter.java | 8 +-
.../impl/Utf8ViewAvaticaParameterConverter.java | 9 +-
.../driver/jdbc/utils/AvaticaParameterBinder.java | 6 +-
.../apache/arrow/driver/jdbc/utils/SqlTypes.java | 2 +
.../apache/arrow/driver/jdbc/ConnectionTest.java | 40 +++++-
.../ArrowFlightJdbcAccessorFactoryTest.java | 26 ++++
.../ArrowFlightJdbcVarCharVectorAccessorTest.java | 26 ++++
.../client/ArrowFlightSqlClientHandlerTest.java | 88 ++++++++++++
.../arrow/driver/jdbc/utils/ConvertUtilsTest.java | 34 +++++
.../driver/jdbc/utils/MockFlightSqlProducer.java | 19 +++
.../arrow/driver/jdbc/utils/SqlTypesTest.java | 4 +
pom.xml | 8 +-
.../main/codegen/templates/DenseUnionWriter.java | 4 +-
.../vector/complex/writer/TestComplexWriter.java | 43 ++++++
24 files changed, 504 insertions(+), 73 deletions(-)
create mode 100644
flight/flight-sql-jdbc-core/src/test/java/org/apache/arrow/driver/jdbc/client/ArrowFlightSqlClientHandlerTest.java