Skip to content

Commit

Permalink
One more clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace committed Apr 22, 2024
1 parent 370694d commit 98b2049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/lance/src/datafusion/logical_expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub fn resolve_column_type(expr: &Expr, schema: &Schema) -> Option<DataType> {
Expr::ScalarFunction(udf) => {
if udf.name() == GetFieldFunc::default().name() {
let name = get_as_string_scalar_opt(&udf.args[1])?;
field_path.push(&name);
field_path.push(name);
current_expr = &udf.args[0];
} else {
return None;
Expand Down

0 comments on commit 98b2049

Please sign in to comment.