This is an automated email from the ASF dual-hosted git repository. lidavidm pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push: new c709df48b fix(java/driver/jni): update AdbcDriverFactory metadata (#3348) c709df48b is described below commit c709df48bcf1306f3e2ba8e982a12dfb3b4379ae Author: David Li <li.david...@gmail.com> AuthorDate: Thu Aug 28 09:14:29 2025 +0900 fix(java/driver/jni): update AdbcDriverFactory metadata (#3348) --- CONTRIBUTING.md | 4 ++++ .../services/org.apache.arrow.adbc.drivermanager.AdbcDriverFactory | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 498f8b4b2..f177e04fc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -364,6 +364,10 @@ export BUILD_DRIVER_MANAGER=ON export BUILD_DRIVER_SQLITE=ON ./ci/scripts/cpp_build.sh $(pwd) $(pwd)/build $(pwd)/local +# Ensure JAVA_HOME is set. +# If it's not set, you can find it like so: +# java -XshowSettings:properties -version 2>&1 >/dev/null | grep java.home + # Build the JNI libraries ./ci/scripts/java_jni_build.sh $(pwd) $(pwd)/java/build $(pwd)/local ``` diff --git a/java/driver/jni/src/main/resources/META-INF/services/org.apache.arrow.adbc.drivermanager.AdbcDriverFactory b/java/driver/jni/src/main/resources/META-INF/services/org.apache.arrow.adbc.drivermanager.AdbcDriverFactory index c592768f1..501c4c3ca 100644 --- a/java/driver/jni/src/main/resources/META-INF/services/org.apache.arrow.adbc.drivermanager.AdbcDriverFactory +++ b/java/driver/jni/src/main/resources/META-INF/services/org.apache.arrow.adbc.drivermanager.AdbcDriverFactory @@ -15,4 +15,4 @@ # specific language governing permissions and limitations # under the License. -org.apache.arrow.adbc.driver.jni.NativeDriverFactory +org.apache.arrow.adbc.driver.jni.JniDriverFactory