File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
datafusion/functions/src/string Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -180,8 +180,7 @@ pub fn string_overlay<T: OffsetSizeTrait>(args: &[ArrayRef]) -> Result<ArrayRef>
180180 let characters_array = as_generic_string_array :: < T > ( & args[ 1 ] ) ?;
181181 let pos_num = as_int64_array ( & args[ 2 ] ) ?;
182182
183- let result =
184- process_overlay ! ( string_array, characters_array, pos_num) ?;
183+ let result = process_overlay ! ( string_array, characters_array, pos_num) ?;
185184 Ok ( Arc :: new ( result) as ArrayRef )
186185 }
187186 4 => {
@@ -190,12 +189,8 @@ pub fn string_overlay<T: OffsetSizeTrait>(args: &[ArrayRef]) -> Result<ArrayRef>
190189 let pos_num = as_int64_array ( & args[ 2 ] ) ?;
191190 let len_num = as_int64_array ( & args[ 3 ] ) ?;
192191
193- let result = process_overlay ! (
194- string_array,
195- characters_array,
196- pos_num,
197- len_num
198- ) ?;
192+ let result =
193+ process_overlay ! ( string_array, characters_array, pos_num, len_num) ?;
199194 Ok ( Arc :: new ( result) as ArrayRef )
200195 }
201196 other => {
You can’t perform that action at this time.
0 commit comments