forked from fl00r/go-tarantool-1.6
-
Notifications
You must be signed in to change notification settings - Fork 60
Closed
Description
changes the format of the xrow decoding error. Previously the error message was "Failed to decode Arrow IPC data".
Now the top-level error message equals "Invalid MsgPack - packet body" with a chain of nested errors.
So I suggest:
- Temporary disable these checks:
go-tarantool/arrow/tarantool_test.go
Lines 38 to 45 in d4b5d04
{ | |
"", | |
"Failed to decode Arrow IPC data", | |
}, | |
{ | |
"00", | |
"Failed to decode Arrow IPC data", | |
}, |
-
Merge the patch mentioned above to master.
-
Enable the checks with updated error messages.