Skip to content

Commit

Permalink
Fix typo in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
davisp committed Dec 4, 2024
1 parent e1d66ac commit 3d645e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/core/tests/dataframe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2066,7 +2066,7 @@ async fn test_dataframe_placeholder_column_parameter() -> Result<()> {
);

// The placeholder is not replaced with a value,
// so the filter data type is not know, i.e. a = $0.
// so the filter data type is not known, i.e. a = $0.
// Therefore, the optimization fails.
let optimized_plan = ctx.state().optimize(logical_plan);
assert!(optimized_plan
Expand Down Expand Up @@ -2135,7 +2135,7 @@ async fn test_dataframe_placeholder_like_expression() -> Result<()> {
);

// The placeholder is not replaced with a value,
// so the filter data type is not know, i.e. a = $0.
// so the filter data type is not known, i.e. a = $0.
// Therefore, the optimization fails.
let optimized_plan = ctx.state().optimize(logical_plan);
assert!(optimized_plan
Expand Down

0 comments on commit 3d645e0

Please sign in to comment.