Skip to content

Commit 512cba0

Browse files
committed
fix clippy warning
1 parent 2a7b27b commit 512cba0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/query/storages/fuse/src/io/read/virtual_column/virtual_column_reader_parquet.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ impl VirtualColumnDataPaster {
268268
None,
269269
&cast_func_name,
270270
[(value, orig_type)],
271-
&func_ctx,
271+
func_ctx,
272272
data_block.num_rows(),
273273
&BUILTIN_FUNCTIONS,
274274
)?;
@@ -294,7 +294,7 @@ impl VirtualColumnDataPaster {
294294
None,
295295
"get_by_keypath",
296296
[src_arg, path_arg],
297-
&func_ctx,
297+
func_ctx,
298298
data_block.num_rows(),
299299
&BUILTIN_FUNCTIONS,
300300
)?;
@@ -304,7 +304,7 @@ impl VirtualColumnDataPaster {
304304
None,
305305
cast_func_name,
306306
[(value, data_type)],
307-
&func_ctx,
307+
func_ctx,
308308
data_block.num_rows(),
309309
&BUILTIN_FUNCTIONS,
310310
)?;

0 commit comments

Comments
 (0)