Skip to content

Commit

Permalink
docs: fix wrong pushdown name & a typo (#8875)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveLauC authored Jan 15, 2024
1 parent 259e12c commit e966a10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/core/src/datasource/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub trait TableProvider: Sync + Send {
/// expressions are `AND`ed together).
///
/// DataFusion pushes filtering into the scans whenever possible
/// ("Projection Pushdown"), and depending on the format and the
/// ("Filter Pushdown"), and depending on the format and the
/// implementation of the format, evaluating the predicate during the scan
/// can increase performance significantly.
///
Expand Down Expand Up @@ -143,7 +143,7 @@ pub trait TableProvider: Sync + Send {
/// possible, called "Limit Pushdown" as some sources can use this
/// information to improve their performance. Note that if there are any
/// Inexact filters pushed down, the LIMIT cannot be pushed down. This is
/// because inexact filters do not guarentee that every filtered row is
/// because inexact filters do not guarantee that every filtered row is
/// removed, so applying the limit could lead to too few rows being available
/// to return as a final result.
async fn scan(
Expand Down

0 comments on commit e966a10

Please sign in to comment.