Skip to content

Commit 9c8f572

Browse files
committed
fix map
1 parent 872f992 commit 9c8f572

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/query/sql/src/planner/semantic/type_check.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ impl<'a> TypeChecker<'a> {
738738
Self::all_sugar_functions()
739739
.iter()
740740
.cloned()
741-
.map(str::to_string),
741+
.map(|ascii| ascii.into_inner()),
742742
);
743743
let mut engine: SimSearch<String> = SimSearch::new();
744744
for func_name in all_funcs {

0 commit comments

Comments
 (0)