From ffd861f07562ec1a173292dcbe8f1ed2abc0f7f5 Mon Sep 17 00:00:00 2001 From: Rafael Telles Date: Mon, 6 Dec 2021 15:07:04 -0300 Subject: [PATCH] Update FlightSql.proto docstrings --- format/FlightSql.proto | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/format/FlightSql.proto b/format/FlightSql.proto index 460637c92f78c..f14f522a7d673 100644 --- a/format/FlightSql.proto +++ b/format/FlightSql.proto @@ -55,7 +55,7 @@ message CommandGetSqlInfo { * Initially, Flight SQL will support the following information types: * - Server Information - Range [0-500) * - Syntax Information - Range [500-1000) - * Range [0-10,000) is reserved for defaults (see SqlInfo enum for default options). + * Range [0-10,000) is reserved for defaults (see SqlInfo enum for default options). * Custom options should start at 10,000. * * If omitted, then all metadata will be retrieved. @@ -80,7 +80,7 @@ enum SqlInfo { // Retrieves a UTF-8 string with the Arrow format version of the Flight SQL Server. FLIGHT_SQL_SERVER_ARROW_VERSION = 2; - /* + /* * Retrieves a boolean value indicating whether the Flight SQL Server is read only. * * Returns: @@ -1427,11 +1427,11 @@ message ActionCreatePreparedStatementResult { // Opaque handle for the prepared statement on the server. bytes prepared_statement_handle = 1; - // If a result set generating query was provided, dataset_schema contains the + // If a result set generating query was provided, dataset_schema contains the // schema of the dataset as described in Schema.fbs::Schema, it is serialized as an IPC message. bytes dataset_schema = 2; - // If the query provided contained parameters, parameter_schema contains the + // If the query provided contained parameters, parameter_schema contains the // schema of the expected parameters as described in Schema.fbs::Schema, it is serialized as an IPC message. bytes parameter_schema = 3; } @@ -1476,7 +1476,7 @@ message CommandStatementQuery { /** * Represents a ticket resulting from GetFlightInfo with a CommandStatementQuery. - * This should be treated as an opaque value, that is, clients should not attempt to parse this. + * This should be used only once and treated as an opaque value, that is, clients should not attempt to parse this. */ message TicketStatementQuery { option (experimental) = true;