We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 368efd0 commit f622758Copy full SHA for f622758
1 file changed
datafusion-federation/src/schema_cast/lists_cast.rs
@@ -30,7 +30,7 @@ macro_rules! cast_string_to_list_array {
30
None => list_builder.append_null(),
31
Some(string_value) => {
32
decoder.decode(string_value.as_bytes()).map_err(|e| {
33
- ArrowError::CastError(format!("Failed to decode value: {e}"))
+ ArrowError::CastError(format!("Failed to decode value {string_value}: {e}"))
34
})?;
35
36
if let Some(b) = decoder.flush().map_err(|e| {
0 commit comments