Skip to content

Commit b4f84c4

Browse files
fix ci
1 parent dc683d3 commit b4f84c4

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

datafusion/physical-expr/src/expressions/dynamic_filters.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,6 @@ mod test {
10181018
)
10191019
.expect("reassign_expr_columns should succeed");
10201020
let reassigned = reassigned
1021-
.as_any()
10221021
.downcast_ref::<DynamicFilterPhysicalExpr>()
10231022
.expect("Expected dynamic filter after reassignment");
10241023

datafusion/proto/src/generated/prost.rs

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion/proto/tests/cases/roundtrip_physical_plan.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3259,7 +3259,7 @@ fn test_dynamic_filter_roundtrip_dedupe() -> Result<()> {
32593259
Ok(())
32603260
}
32613261

3262-
/// Rountrip test for an execution plan where there are multiple instances of a dynamic filter
3262+
/// Roundtrip test for an execution plan where there are multiple instances of a dynamic filter
32633263
/// with different children.
32643264
#[test]
32653265
fn test_dynamic_filter_plan_roundtrip_dedupe_shallow_expr_id() -> Result<()> {
@@ -3272,7 +3272,7 @@ fn test_dynamic_filter_plan_roundtrip_dedupe_shallow_expr_id() -> Result<()> {
32723272

32733273
// Assert the filters are not modified during roundtrip.
32743274
//
3275-
// There's a small technicality that `filter_expr_1` is rewritten to an eqivalent expression
3275+
// There's a small technicality that `filter_expr_1` is rewritten to an equivalent expression
32763276
// during deserialization, so we capture that here by calling
32773277
// `filter.with_new_children(filter.children)`.
32783278
let filter_expr_1_children = Arc::clone(&filter_expr_1)

0 commit comments

Comments
 (0)