Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
PsiACE authored Aug 14, 2024
1 parent 5d5a4e6 commit 0a72732
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion datafusion/functions/src/unicode/find_in_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ fn find_in_set(args: &[ArrayRef]) -> Result<ArrayRef> {
let str_list_array = args[1].as_string_view();
find_in_set_general::<Int32Type, _>(string_array, str_list_array)
}
_ => unreachable!(),
other => {
exec_err!("Unsupported data type {other:?} for function find_in_set")
}
}
}

Expand Down

0 comments on commit 0a72732

Please sign in to comment.