daipom opened a new issue, #2993: URL: https://github.com/apache/arrow-adbc/issues/2993
### What happened? Recently, `check-c` for ADBC SQLite on macOS fails. https://github.com/apache/arrow-adbc/actions/runs/15677308786/job/44160470753?pr=2975 It appears that it has failed since the R 4.5.1 release (2025-06-13). `R CMD check` of https://github.com/r-lib/actions/tree/v2/check-r-package fails as follows. ``` * checking whether package ‘adbcsqlite’ can be installed ... WARNING Warning: Found the following significant warnings: tools/test_extension.c:21:29: warning: 'sqlite3_auto_extension' is deprecated: first deprecated in macOS 10.10 - Process-global auto extensions are not supported on Apple platforms [-Wdeprecated-declarations] See ‘/Users/runner/work/arrow-adbc/arrow-adbc/r/adbcsqlite/check/adbcsqlite.Rcheck/00install.out’ for details. ``` ### Stack Trace None. ### How can we reproduce the bug? Run `R (standard)` CI for ADBC SQLite on macOS. ### Environment/Setup I have confirmed this warning does not occur with R 4.5.0. The reason is unclear, but it appears to be caused by R 4.5.1. ```diff diff --git a/.github/workflows/r-check.yml b/.github/workflows/r-check.yml index 2746bc41f..b9b8d18df 100644 --- a/.github/workflows/r-check.yml +++ b/.github/workflows/r-check.yml @@ -53,7 +53,7 @@ jobs: go-version: "${{ env.GO_VERSION }}" - uses: r-lib/actions/setup-r@bd49c52ffe281809afa6f0fecbf37483c5dd0b93 # v2 with: - r-version: release + r-version: '4.5.0' use-public-rspm: true - name: Set PKG_CONFIG_PATH on MacOS ``` -- 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: issues-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org