Skip to content

Commit

Permalink
Sync proto files
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasHafner committed May 5, 2024
1 parent f0149e8 commit 8209532
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/proto/polyprism/meta_requests.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 doesnt 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 {
Expand Down
2 changes: 1 addition & 1 deletion src/main/proto/polyprism/namespace_meta_responses.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
3 changes: 2 additions & 1 deletion src/main/proto/polyprism/statement_requests.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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;
}

0 comments on commit 8209532

Please sign in to comment.