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
Improve error reporting of the serde csv serializer.
Make the error messages to show also the field and value that failed to
serialize.
Example of an error before the change:
> Error Parsing Data: CSV deserialize error: record 1 (line: 2, byte: 549): trailing input.
The new improved error message is now displayed as:
> Error Parsing Data: CSV deserialize error: record 1 (line: 2, byte: 549): trailing input. (Field 'trade_timestamp' has a value '2023-04-04T09:46:45.000Z')
0 commit comments