Skip to content

Commit

Permalink
fix map
Browse files Browse the repository at this point in the history
  • Loading branch information
notauserx committed Nov 27, 2024
1 parent 872f992 commit 9c8f572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/sql/src/planner/semantic/type_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ impl<'a> TypeChecker<'a> {
Self::all_sugar_functions()
.iter()
.cloned()
.map(str::to_string),
.map(|ascii| ascii.into_inner()),
);
let mut engine: SimSearch<String> = SimSearch::new();
for func_name in all_funcs {
Expand Down

0 comments on commit 9c8f572

Please sign in to comment.