Skip to content

Commit

Permalink
Fix inconsistent field names
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Sep 22, 2023
1 parent a9b8b55 commit 9c5b746
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions plugins/proto-interface/src/main/proto/meta_requests.proto
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ message ClientInfoPropertyMetaRequest {
}

message FunctionsRequest {
string queryLanguage = 1;
string functionCategory = 2;
string query_language = 1;
string function_category = 2;
}
4 changes: 2 additions & 2 deletions plugins/proto-interface/src/main/proto/meta_responses.proto
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ message ClientInfoPropertiesResponse {
}

message ClientInfoPropertyMetaResponse {
repeated ClientInfoPropertyMeta clientInfoPropertyMetas = 1;
repeated ClientInfoPropertyMeta client_info_property_metas = 1;
}

message ClientInfoPropertyMeta {
string key = 1;;
string key = 1;
string default_value = 2;
int32 maxlength = 3;
string description = 4;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ message Column {
optional string default_value_as_string = 9;
int32 column_index = 10;
optional string collation = 11;
bool isHidden = 12;
bool is_hidden = 12;
ColumnType column_type = 13;
enum ColumnType {
UNSPECIFIED = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ message PrepareStatementRequest {
}

message ExecuteIndexedStatementRequest {
int32 statementId = 1;
int32 statement_id = 1;
IndexedParameters parameters = 2;
optional int32 fetch_size = 3;
}
Expand All @@ -37,7 +37,7 @@ message ExecuteIndexedStatementBatchRequest {
}

message ExecuteNamedStatementRequest {
int32 statementId = 1;
int32 statement_id = 1;
NamedParameters parameters = 2;
optional int32 fetch_size = 3;
}
Expand All @@ -56,5 +56,5 @@ message CloseStatementRequest {

message FetchRequest {
int32 statement_id = 1;
optional int32 fetchSize = 2;
optional int32 fetch_size = 2;
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ message CloseStatementResponse {
}

message Frame {
bool isLast = 1;
bool is_last = 1;
oneof result {
RelationalFrame relational_frame = 2;
GraphFrame graph_frame = 3;
Expand Down

0 comments on commit 9c5b746

Please sign in to comment.