Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vgapeyev committed May 18, 2024
1 parent 51f252c commit ce66373
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion datafusion/functions/src/core/getfield.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ impl ScalarUDFImpl for GetFieldFunc {
}
return exec_err!("Malformed DataType::Map -- does not wrap over a DataType::Struct, got {}", &args[0]);
}
todo!("get_field function is not implemented for this type: {}", &args[0]);
todo!(
"get_field function is not implemented for this type: {}",
&args[0]
);
}

fn return_type_from_exprs(
Expand Down

0 comments on commit ce66373

Please sign in to comment.