Skip to content

Commit

Permalink
feature gate some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Feb 5, 2025
1 parent db78623 commit cf566bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/polars-stream/src/physical_plan/to_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ fn to_graph_rec<'a>(
output_schema,
allow_missing_columns,
} => match scan_type {
#[cfg(feature = "parquet")]
polars_plan::plans::FileScan::Parquet { .. } => ctx.graph.add_node(
nodes::io_sources::SourceComputeNode::new(
nodes::io_sources::multi_scan::MultiScanNode::<ParquetSourceNode>::new(
Expand All @@ -371,6 +372,7 @@ fn to_graph_rec<'a>(
),
[],
),
#[cfg(feature = "ipc")]
polars_plan::plans::FileScan::Ipc { .. } => ctx.graph.add_node(
nodes::io_sources::SourceComputeNode::new(
nodes::io_sources::multi_scan::MultiScanNode::<
Expand Down

0 comments on commit cf566bb

Please sign in to comment.