Skip to content

Commit c52237d

Browse files
authored
make can_expr_be_pushed_down_with_schemas public again (#15971)
1 parent 5bdaeaf commit c52237d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/datasource-parquet/src/row_filter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ fn pushdown_columns(
372372
/// Otherwise, true.
373373
/// Note that the schema passed in here is *not* the physical file schema (as it is not available at that point in time);
374374
/// it is the schema of the table that this expression is being evaluated against minus any projected columns and partition columns.
375-
pub(crate) fn can_expr_be_pushed_down_with_schemas(
375+
pub fn can_expr_be_pushed_down_with_schemas(
376376
expr: &Arc<dyn PhysicalExpr>,
377377
file_schema: &Schema,
378378
) -> bool {

0 commit comments

Comments
 (0)