We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75bb48c commit d1bf5e5Copy full SHA for d1bf5e5
1 file changed
datafusion/datasource-parquet/src/opener.rs
@@ -473,6 +473,7 @@ impl Future for ParquetOpenFuture {
473
return Poll::Ready(Ok(morsel.into_stream()));
474
}
475
476
+ // Planner did not produce any stream (for example, it pruned the entire file)
477
let Some(planner) = self.ready_planners.pop_front() else {
478
return Poll::Ready(Ok(futures::stream::empty().boxed()));
479
};
0 commit comments