quanghgx commented on code in PR #13986:
URL: https://github.com/apache/arrow/pull/13986#discussion_r962142372
##########
cpp/src/arrow/flight/types.cc:
##########
@@ -370,10 +397,141 @@ bool FlightEndpoint::Equals(const FlightEndpoint& other)
const {
return ticket == other.ticket && locations == other.locations;
}
+arrow::Result<std::string> FlightEndpoint::SerializeToString() const {
+ pb::FlightEndpoint pb_flight_endpoint;
+ RETURN_NOT_OK(internal::ToProto(*this, &pb_flight_endpoint));
Review Comment:
add the needed header in serialization_internal.h
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]