From d21b256cad5bebb952127cc223b52736535c0ca8 Mon Sep 17 00:00:00 2001 From: ritchie Date: Fri, 15 Mar 2024 09:44:32 +0100 Subject: [PATCH] features --- crates/polars-io/src/parquet/read_impl.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/crates/polars-io/src/parquet/read_impl.rs b/crates/polars-io/src/parquet/read_impl.rs index 2093514fe371..096fa9708c7a 100644 --- a/crates/polars-io/src/parquet/read_impl.rs +++ b/crates/polars-io/src/parquet/read_impl.rs @@ -650,11 +650,12 @@ impl BatchedParquetReader { self.use_statistics, self.hive_partition_columns.as_deref(), ), + #[cfg(feature = "async")] ColumnStore::Fetched(b) => { - // This branch we spawn th decoding and decompression of the bytes on a rayon task. - // This will ensure we don't block the aysnc thread. + // This branch we spawn the decoding and decompression of the bytes on a rayon task. + // This will ensure we don't block the async thread. - // Reconstruct as that makes it a static. + // Reconstruct as that makes it a 'static. let store = ColumnStore::Fetched(b); let (tx, rx) = tokio::sync::oneshot::channel();