Skip to content

Commit

Permalink
fix: expr_fn tests
Browse files Browse the repository at this point in the history
  • Loading branch information
izveigor committed Jul 24, 2023
1 parent c7021af commit 7f86621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/expr/src/expr_fn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1037,9 +1037,9 @@ mod test {
test_scalar_expr!(ArrayPosition, array_position, array, element, index);
test_scalar_expr!(ArrayPositions, array_positions, array, element);
test_scalar_expr!(ArrayPrepend, array_prepend, array, element);
test_scalar_expr!(ArrayRemove, array_remove, array, element);
test_scalar_expr!(ArrayRemove, array_remove, array, element, max);
test_scalar_expr!(ArrayRemoves, array_removes, array, element);
test_scalar_expr!(ArrayReplace, array_replace, array, from, to);
test_scalar_expr!(ArrayReplace, array_replace, array, from, to, max);
test_scalar_expr!(ArrayReplaces, array_replaces, array, from, to);
test_scalar_expr!(ArrayToString, array_to_string, array, delimiter);
test_unary_scalar_expr!(Cardinality, cardinality);
Expand Down

0 comments on commit 7f86621

Please sign in to comment.