From 8209532175a11b69861c1319976b5d74a0e065d5 Mon Sep 17 00:00:00 2001 From: TobiasHafner Date: Sun, 5 May 2024 09:49:18 +0200 Subject: [PATCH] Sync proto files --- src/main/proto/polyprism/meta_requests.proto | 2 +- src/main/proto/polyprism/namespace_meta_responses.proto | 2 +- src/main/proto/polyprism/statement_requests.proto | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/proto/polyprism/meta_requests.proto b/src/main/proto/polyprism/meta_requests.proto index 1ec451cf..6854f53f 100644 --- a/src/main/proto/polyprism/meta_requests.proto +++ b/src/main/proto/polyprism/meta_requests.proto @@ -90,7 +90,7 @@ message ProceduresRequest { /* The ClientInfoPropertiesRequest message facilitates the acquisition of client information properties stored in the database. These properties can offer additional context about the connected client. -This message doesn’t possess any fields. +This message doesn't possess any fields. It acts as a directive for the server to provide the associated client information properties in a ClientInfoPropertiesResponse. */ message ClientInfoPropertiesRequest { diff --git a/src/main/proto/polyprism/namespace_meta_responses.proto b/src/main/proto/polyprism/namespace_meta_responses.proto index df2b5417..e851e36f 100644 --- a/src/main/proto/polyprism/namespace_meta_responses.proto +++ b/src/main/proto/polyprism/namespace_meta_responses.proto @@ -117,7 +117,7 @@ message Column { // The namespace or schema of the primary key’s table. REGULAR = 1; // The table with this primary key. - CALUCLATED = 2; + CALCULATED = 2; // The columns that make up the primary key. VERSION = 3; } diff --git a/src/main/proto/polyprism/statement_requests.proto b/src/main/proto/polyprism/statement_requests.proto index 180cc742..09d676d4 100644 --- a/src/main/proto/polyprism/statement_requests.proto +++ b/src/main/proto/polyprism/statement_requests.proto @@ -13,7 +13,7 @@ option java_outer_classname = "StatementRequests"; package polypheny.protointerface; /* -Closes the result set of the statement matching the specified statement id. If no such statmeent exists, or the result is already closed, this request is ignored. +Closes the result set of the statement matching the specified statement id. If no such statement exists, or the result is already closed, this request is ignored. */ message CloseResultRequest { // The id of the statement of which the result set should be closed. @@ -149,3 +149,4 @@ message FetchRequest { // (Optional) Number of rows to retrieve in this batch. If no fetch size is specified, a default value is used. optional int32 fetch_size = 2; } +