Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
Description
Problem
ProtoBuf proto3 specifies that if a message does not contain a particular singular element, the field should get the default value. However, when the C++ flight-test-integration-server gets a DoPut request with a FlightData message for a record batch containing no items, and the FlightData is missing the data_body field, the server responds with an error "Expected body in IPC message of type record batch".
What happens
If I run the C++ flight-test-integration-server and the C++ flight-test-integration-client with the generated_null_trivial test case, the test passes and I see the protobuf in wireshark shown in the cpp-client-empty-data-body.png attachment.
Note the data_body field is present but has no value.
If I run the Rust flight-test-integration-client that I'm working on developing, it does not send the data_body field at all if there are no bytes to send. I see the protobuf in wireshark shown in the rust-client-missing-data-body.png attachment.
Note the data_body field is not present.
The C++ server then returns the error message "Expected body in IPC message of type record batch", which comes from this check for message body called in ReadNext of the record batch stream reader.
What I expect to happen
Instead of returning an error message because of a null pointer, the Message should get the default value of empty bytes.
Attachments
Attachments
Issue Links
- is related to
-
ARROW-10962 [Java][FlightRPC] FlightData deserializer should accept missing fields
- Resolved
- relates to
-
ARROW-10939 [C#][FlightRPC] incompatible with java client for empty record batches
- Open
- links to