Skip to content

Commit

Permalink
Update to use non deprecated API
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Sep 20, 2024
1 parent bb671d5 commit c89c440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/catalog/src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ pub trait TableProvider: Debug + Sync + Send {
/// // This example only supports a between expr with a single column named "c1".
/// Expr::Between(between_expr) => {
/// between_expr.expr
/// .try_into_col()
/// .try_as_col()
/// .map(|column| {
/// if column.name == "c1" {
/// TableProviderFilterPushDown::Exact
Expand Down

0 comments on commit c89c440

Please sign in to comment.