Skip to content

Commit 3bed3c0

Browse files
Merge branch 'main' into lia/fix-union-schema-field-names
2 parents 8d627db + 67a2173 commit 3bed3c0

File tree

125 files changed

+2975
-1491
lines changed

Some content is hidden

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

125 files changed

+2975
-1491
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

.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)