Skip to content

Commit

Permalink
fix(rust): Fix broken feature gate for ParquetReader (#18376)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Aug 26, 2024
1 parent f31eb6a commit f07eea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-plan/src/plans/functions/count.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use polars_io::parquet::read::ParquetAsyncReader;
use polars_io::parquet::read::ParquetReader;
#[cfg(all(feature = "parquet", feature = "async"))]
use polars_io::pl_async::{get_runtime, with_concurrency_budget};
#[cfg(feature = "json")]
#[cfg(any(feature = "json", feature = "parquet"))]
use polars_io::SerReader;

use super::*;
Expand Down

0 comments on commit f07eea3

Please sign in to comment.