From 58848c4a230db5277a6f3a425845557a257a1f89 Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies <1781103+tustvold@users.noreply.github.com> Date: Fri, 8 Jul 2022 11:57:52 -0400 Subject: [PATCH] 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 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