Skip to content

Commit 0f9bbf7

Browse files
committed
Merge remote-tracking branch 'origin/spark-function-sha2' into spark-function-sha2
2 parents 43ea6c2 + 37ed8b4 commit 0f9bbf7

File tree

227 files changed

+14609
-5916
lines changed

Some content is hidden

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

227 files changed

+14609
-5916
lines changed

.github/workflows/extended.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,17 @@ jobs:
101101
- name: Run tests (excluding doctests)
102102
env:
103103
RUST_BACKTRACE: 1
104-
run: cargo test --profile ci --exclude datafusion-examples --exclude datafusion-benchmarks --workspace --lib --tests --bins --features avro,json,backtrace,extended_tests,recursive_protection
104+
run: |
105+
cargo test \
106+
--profile ci \
107+
--exclude datafusion-examples \
108+
--exclude datafusion-benchmarks \
109+
--exclude datafusion-cli \
110+
--workspace \
111+
--lib \
112+
--tests \
113+
--bins \
114+
--features avro,json,backtrace,extended_tests,recursive_protection
105115
- name: Verify Working Directory Clean
106116
run: git diff --exit-code
107117
- name: Cleanup
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/[email protected]
5050
with:
5151
repo-token: ${{ secrets.GITHUB_TOKEN }}
52-
configuration-path: .github/workflows/dev_pr/labeler.yml
52+
configuration-path: .github/workflows/labeler/labeler-config.yml
5353
sync-labels: true
5454

5555
# TODO: Enable this when eps1lon/actions-label-merge-conflict is available.

.github/workflows/dev_pr/labeler.yml renamed to .github/workflows/labeler/labeler-config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ physical-expr:
4141

4242
physical-plan:
4343
- changed-files:
44-
- any-glob-to-any-file: [datafusion/physical-plan/**/*']
44+
- any-glob-to-any-file: ['datafusion/physical-plan/**/*']
4545

4646

4747
catalog:
@@ -77,6 +77,10 @@ proto:
7777
- changed-files:
7878
- any-glob-to-any-file: ['datafusion/proto/**/*', 'datafusion/proto-common/**/*']
7979

80+
spark:
81+
- changed-files:
82+
- any-glob-to-any-file: ['datafusion/spark/**/*']
83+
8084
substrait:
8185
- changed-files:
8286
- any-glob-to-any-file: ['datafusion/substrait/**/*']

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,8 +401,8 @@ jobs:
401401
- name: Run tests with headless mode
402402
working-directory: ./datafusion/wasmtest
403403
run: |
404-
wasm-pack test --headless --firefox
405-
wasm-pack test --headless --chrome --chromedriver $CHROMEWEBDRIVER/chromedriver
404+
RUSTFLAGS='--cfg getrandom_backend="wasm_js"' wasm-pack test --headless --firefox
405+
RUSTFLAGS='--cfg getrandom_backend="wasm_js"' wasm-pack test --headless --chrome --chromedriver $CHROMEWEBDRIVER/chromedriver
406406
407407
# verify that the benchmark queries return the correct results
408408
verify-benchmark-results:

0 commit comments

Comments
 (0)