This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 58848c4a2 Fix parquet test_common feature flags (#2003)
58848c4a2 is described below

commit 58848c4a230db5277a6f3a425845557a257a1f89
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Fri Jul 8 11:57:52 2022 -0400

    Fix parquet test_common feature flags (#2003)
---
 .github/workflows/rust.yml | 1 +
 parquet/Cargo.toml         | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 9331db745..d0102c609 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 476c55a72..071f94af9 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

Reply via email to