Skip to content

Commit

Permalink
add support for xz file compression
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiayu Liu authored and jimexist committed Nov 2, 2022
1 parent 2ec15a4 commit 52ccbe9
Show file tree
Hide file tree
Showing 12 changed files with 203 additions and 150 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
cargo check --no-default-features -p datafusion
- name: Check workspace with all features
run: |
cargo check --workspace --benches --features avro,jit,scheduler,json
cargo check --workspace --benches --features avro,jit,scheduler,json,compression
- name: Check Cargo.lock for datafusion-cli
run: |
# If this test fails, try running `cargo update` in the `datafusion-cli` directory
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Run tests
run: |
export PATH=$PATH:$HOME/d/protoc/bin
cargo test --features avro,jit,scheduler,json
cargo test --features avro,jit,scheduler,json,compression
- name: Run examples
run: |
export PATH=$PATH:$HOME/d/protoc/bin
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
mkdir -p benchmarks/data/answers
git clone https://github.com/databricks/tpch-dbgen.git
cd tpch-dbgen
make
make
./dbgen -f -s 1
mv *.tbl ../benchmarks/data
mv ./answers/* ../benchmarks/data/answers/
Expand Down
2 changes: 1 addition & 1 deletion ci/scripts/rust_clippy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# under the License.

set -ex
cargo clippy --all-targets --workspace --features avro,jit,pyarrow,scheduler -- -D warnings
cargo clippy --all-targets --workspace --features avro,jit,pyarrow,scheduler,compression -- -D warnings
Loading

0 comments on commit 52ccbe9

Please sign in to comment.