You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Something like this helped me debug an issue I was running into:
Err(arrow2::error::Error::InvalidArgumentError(format!("Data type mismatch. Expected: {:?} | Found: {:?}",&<ArrowTypeasArrowField>::data_type(),
arr.data_type())))
It produced an error message that looks like:
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: InvalidArgumentError("Data type mismatch. Expected: Struct([...redacted...]) | Found: Struct(...redacted...)")', examples/read_parquet_specific_columns.rs:95:79
Could potentially make it even better by doing a diff.
The text was updated successfully, but these errors were encountered:
Currently the error message doesn't give enough information to debug what's going on.
arrow2-convert/arrow2_convert/src/deserialize.rs
Lines 305 to 307 in 6c37e29
Something like this helped me debug an issue I was running into:
It produced an error message that looks like:
Could potentially make it even better by doing a diff.
The text was updated successfully, but these errors were encountered: