From 58f748eaa5a1602ec15fe3577f4270dc3867b7fa Mon Sep 17 00:00:00 2001 From: David Li Date: Tue, 6 Sep 2022 09:28:17 -0400 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Antoine Pitrou --- format/FlightSql.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/format/FlightSql.proto b/format/FlightSql.proto index 0d0a24cdabbf8..ceefff60d74b5 100644 --- a/format/FlightSql.proto +++ b/format/FlightSql.proto @@ -1797,7 +1797,7 @@ message DoPutUpdateResult { message ActionCancelQueryRequest { option (experimental) = true; - // The result of the GetFlightInfo RPC that initated the query. + // The result of the GetFlightInfo RPC that initiated the query. // XXX(ARROW-16902): this must be a serialized FlightInfo, but is // rendered as bytes because Protobuf does not really support one // DLL using Protobuf definitions from another DLL. @@ -1821,10 +1821,10 @@ message ActionCancelQueryResult { // the same payload may return CANCELLED or a NOT_FOUND error. CANCEL_RESULT_CANCELLED = 1; // The cancellation request is in progress. The client may retry - // the request. + // the cancellation request. CANCEL_RESULT_CANCELLING = 2; // The query is not cancellable. The client should not retry the - // request. + // cancellation request. CANCEL_RESULT_NOT_CANCELLABLE = 3; }