From 2eadea494a6d7a4fd9491a30bd30fd702a46837b Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies Date: Tue, 5 Jul 2022 09:10:26 -0400 Subject: [PATCH] Fix parquet test_common feature flags --- .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 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