Skip to content

Commit

Permalink
fix clipppy
Browse files Browse the repository at this point in the history
  • Loading branch information
Blizzara committed Jul 19, 2024
1 parent c7bad12 commit 0957739
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion datafusion/substrait/src/logical_plan/consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1752,7 +1752,12 @@ fn from_substrait_literal(
.iter()
.map(|el| {
element_name_idx = *name_idx;
from_substrait_literal(el, extensions, dfs_names, &mut element_name_idx)
from_substrait_literal(
el,
extensions,
dfs_names,
&mut element_name_idx,
)
})
.collect::<Result<Vec<_>>>()?;
*name_idx = element_name_idx;
Expand Down

0 comments on commit 0957739

Please sign in to comment.