Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Oct 27, 2022
1 parent ecd9cca commit 2ca7a31
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion parquet-test-utils/src/lib.rs
Expand Up @@ -122,7 +122,13 @@ impl TestParquetFile {
})
}

/// return a `ParquetExec` with the specified options to scan the
/// return a `ParquetExec` and `FilterExec` with the specified options to scan this parquet file.
///
/// This creates the pattern that DataFusion will:
/// ```
/// (FilterExec)
/// (ParquetExec)
/// ```
pub async fn create_scan(
&self,
filter: Expr,
Expand Down

0 comments on commit 2ca7a31

Please sign in to comment.