diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9331db74565..d0102c609f2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -107,6 +107,7 @@ jobs: cargo check -p parquet cargo check -p parquet --no-default-features cargo check -p parquet --no-default-features --features arrow + cargo check -p parquet --all-features - name: Test compilation of parquet targets with different feature combinations run: | cargo check -p parquet --all-targets diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml index 476c55a729b..071f94af9b2 100644 --- a/parquet/Cargo.toml +++ b/parquet/Cargo.toml @@ -72,7 +72,7 @@ arrow = ["dep:arrow", "base64"] # Enable CLI tools cli = ["serde_json", "base64", "clap","arrow/csv"] # Enable internal testing APIs -test_common = [] +test_common = ["arrow/test_utils"] # Experimental, unstable functionality primarily used for testing experimental = [] # Enable async APIs