Skip to content

Commit 1007db7

Browse files
Merge branch 'apache:main' into fix-snowflake-number-scale
2 parents 390711a + a1a337e commit 1007db7

File tree

273 files changed

+31879
-3042
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+31879
-3042
lines changed

.codespell-dictionary

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
arrpw->arrow

.codespellrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@
1616
# under the License.
1717

1818
[codespell]
19+
dictionary = .codespell-dictionary,-
1920
ignore-words = .codespell-ignore
2021
skip = go/adbc/go.sum

.github/workflows/csharp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
dotnet-version: ${{ matrix.dotnet }}
6060
- name: Checkout ADBC
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
fetch-depth: 0
6464
submodules: recursive

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
name: "pre-commit"
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242
with:
4343
fetch-depth: 0
4444
persist-credentials: false

.github/workflows/dev_adbc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
name: "pre-commit"
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
with:
5050
fetch-depth: 0
5151
persist-credentials: false

.github/workflows/dev_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
name: Process
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
with:
4646
persist-credentials: false
4747

@@ -52,7 +52,7 @@ jobs:
5252
run: |
5353
./.github/workflows/dev_pr/milestone.sh "${GITHUB_REPOSITORY}" ${{github.event.number}}
5454
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
with:
5757
fetch-depth: 0
5858
path: pr_checkout

.github/workflows/dev_pr/body_check.py

100644100755
File mode changed.

.github/workflows/integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
name: "DuckDB Integration Tests"
5656
runs-on: ubuntu-latest
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959
with:
6060
fetch-depth: 0
6161
persist-credentials: false
@@ -102,7 +102,7 @@ jobs:
102102
name: "FlightSQL Integration Tests (Dremio and SQLite)"
103103
runs-on: ubuntu-latest
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v5
106106
with:
107107
fetch-depth: 0
108108
persist-credentials: false
@@ -174,7 +174,7 @@ jobs:
174174
name: "PostgreSQL Integration Tests"
175175
runs-on: ubuntu-latest
176176
steps:
177-
- uses: actions/checkout@v4
177+
- uses: actions/checkout@v5
178178
with:
179179
fetch-depth: 0
180180
persist-credentials: false
@@ -271,7 +271,7 @@ jobs:
271271
name: "Snowflake Integration Tests"
272272
runs-on: ubuntu-latest
273273
steps:
274-
- uses: actions/checkout@v4
274+
- uses: actions/checkout@v5
275275
with:
276276
fetch-depth: 0
277277
persist-credentials: false
@@ -328,7 +328,7 @@ jobs:
328328
name: "FlightSQL C# Interop"
329329
runs-on: ubuntu-latest
330330
steps:
331-
- uses: actions/checkout@v4
331+
- uses: actions/checkout@v5
332332
with:
333333
fetch-depth: 0
334334
persist-credentials: false

.github/workflows/java.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
matrix:
4949
java: ['11', '17', '21', '24']
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
with:
5353
fetch-depth: 0
5454
persist-credentials: false
@@ -74,7 +74,7 @@ jobs:
7474
matrix:
7575
java: ['17', '21']
7676
steps:
77-
- uses: actions/checkout@v4
77+
- uses: actions/checkout@v5
7878
with:
7979
fetch-depth: 0
8080
persist-credentials: false
@@ -114,7 +114,7 @@ jobs:
114114
env:
115115
VCPKG_ROOT: "${{ github.workspace }}/vcpkg"
116116
steps:
117-
- uses: actions/checkout@v4
117+
- uses: actions/checkout@v5
118118
with:
119119
fetch-depth: 0
120120
persist-credentials: false
@@ -186,12 +186,12 @@ jobs:
186186
- { os: Linux, arch: amd64, vcpkg_arch: x64, runner: ubuntu-latest }
187187
- { os: macOS, arch: arm64v8, vcpkg_arch: arm64, runner: macos-latest }
188188
steps:
189-
- uses: actions/checkout@v4
189+
- uses: actions/checkout@v5
190190
with:
191191
fetch-depth: 0
192192
persist-credentials: false
193193
submodules: recursive
194-
- uses: actions/download-artifact@v4
194+
- uses: actions/download-artifact@v5
195195
with:
196196
path: artifacts
197197
pattern: jni-artifacts-*

.github/workflows/native-unix.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
8080
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
8181
steps:
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v5
8383
with:
8484
fetch-depth: 0
8585
persist-credentials: false
@@ -160,7 +160,7 @@ jobs:
160160
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
161161
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
162162
steps:
163-
- uses: actions/checkout@v4
163+
- uses: actions/checkout@v5
164164
with:
165165
fetch-depth: 0
166166
persist-credentials: false
@@ -215,7 +215,7 @@ jobs:
215215
matrix:
216216
os: ["ubuntu-latest"]
217217
steps:
218-
- uses: actions/checkout@v4
218+
- uses: actions/checkout@v5
219219
with:
220220
fetch-depth: 0
221221
persist-credentials: false
@@ -278,7 +278,7 @@ jobs:
278278
name: "clang-tidy"
279279
runs-on: ubuntu-latest
280280
steps:
281-
- uses: actions/checkout@v4
281+
- uses: actions/checkout@v5
282282
with:
283283
fetch-depth: 0
284284
persist-credentials: false
@@ -324,7 +324,7 @@ jobs:
324324
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
325325
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
326326
steps:
327-
- uses: actions/checkout@v4
327+
- uses: actions/checkout@v5
328328
with:
329329
fetch-depth: 0
330330
persist-credentials: false
@@ -353,7 +353,7 @@ jobs:
353353
run: |
354354
sudo sysctl vm.mmap_rnd_bits=28
355355
356-
- uses: actions/download-artifact@v4
356+
- uses: actions/download-artifact@v5
357357
with:
358358
name: driver-manager-${{ matrix.os }}
359359
path: "~"
@@ -396,11 +396,11 @@ jobs:
396396
contents: 'read'
397397
id-token: 'write'
398398
steps:
399-
- uses: actions/checkout@v4
399+
- uses: actions/checkout@v5
400400
with:
401401
fetch-depth: 0
402402
persist-credentials: false
403-
- uses: google-github-actions/auth@ba79af03959ebeac9769e648f473a284504d9193 # v2.1.10
403+
- uses: google-github-actions/auth@b7593ed2efd1c1617e1b0254da33b86225adb2a5 # v2.1.12
404404
continue-on-error: true # if auth fails, bigquery driver tests should skip
405405
with:
406406
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
@@ -458,11 +458,11 @@ jobs:
458458
contents: 'read'
459459
id-token: 'write'
460460
steps:
461-
- uses: actions/checkout@v4
461+
- uses: actions/checkout@v5
462462
with:
463463
fetch-depth: 0
464464
persist-credentials: false
465-
- uses: google-github-actions/auth@ba79af03959ebeac9769e648f473a284504d9193 # v2.1.10
465+
- uses: google-github-actions/auth@b7593ed2efd1c1617e1b0254da33b86225adb2a5 # v2.1.12
466466
continue-on-error: true # if auth fails, bigquery driver tests should skip
467467
with:
468468
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
@@ -502,7 +502,7 @@ jobs:
502502
if: matrix.os == 'ubuntu-latest'
503503
run: go install honnef.co/go/tools/cmd/staticcheck@latest
504504

505-
- uses: actions/download-artifact@v4
505+
- uses: actions/download-artifact@v5
506506
with:
507507
name: driver-manager-${{ matrix.os }}
508508
path: "~"
@@ -546,7 +546,7 @@ jobs:
546546
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
547547
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
548548
steps:
549-
- uses: actions/checkout@v4
549+
- uses: actions/checkout@v5
550550
with:
551551
fetch-depth: 0
552552
persist-credentials: false
@@ -584,7 +584,7 @@ jobs:
584584
cache: true
585585
cache-dependency-path: go/adbc/go.sum
586586

587-
- uses: actions/download-artifact@v4
587+
- uses: actions/download-artifact@v5
588588
with:
589589
name: driver-manager-${{ matrix.os }}
590590
path: "~"
@@ -659,7 +659,7 @@ jobs:
659659
os: ["ubuntu-latest"]
660660
python: ["3.13"]
661661
steps:
662-
- uses: actions/checkout@v4
662+
- uses: actions/checkout@v5
663663
with:
664664
fetch-depth: 0
665665
persist-credentials: false
@@ -688,7 +688,7 @@ jobs:
688688
run: |
689689
sudo sysctl vm.mmap_rnd_bits=28
690690
691-
- uses: actions/download-artifact@v4
691+
- uses: actions/download-artifact@v5
692692
with:
693693
name: driver-manager-${{ matrix.os }}
694694
path: "~"

0 commit comments

Comments
 (0)