Fix protobuf lint error
Some checks failed
Build / cleanup-runs (pull_request) Has been cancelled
Build / build (pull_request) Has been cancelled
Lint / Run golangci-lint (pull_request) Has been cancelled
Lint / Run flake8 on python integration tests (pull_request) Has been cancelled
Protobuf / lint (pull_request) Has been cancelled
Protobuf / break-check (pull_request) Has been cancelled
CodeQL / Analyze (go) (pull_request) Has been cancelled
Dependency Review / dependency-review (pull_request) Has been cancelled
Deploy Contract / cleanup-runs (pull_request) Has been cancelled
Deploy Contract / deploy (pull_request) Has been cancelled
Pull Request Labeler / triage (pull_request) Has been cancelled
Run Gosec / Gosec (pull_request) Has been cancelled
Semgrep / Scan (pull_request) Has been cancelled
Tests / cleanup-runs (pull_request) Has been cancelled
Tests / test-unit-cover (pull_request) Has been cancelled
Tests / test-importer (pull_request) Has been cancelled
Tests / test-rpc (pull_request) Has been cancelled
Tests / sdk_tests (pull_request) Has been cancelled

This commit is contained in:
neeraj 2024-01-11 11:50:25 +05:30
parent c3e0102571
commit 10210aea31
2 changed files with 1 additions and 3 deletions

View File

@ -77,6 +77,7 @@ message QueryListRecordsRequest {
map<string, ValueInput> values = 1; map<string, ValueInput> values = 1;
} }
message ValueInput { message ValueInput {
// Type of record attribute value
oneof value { oneof value {
string string = 1; string string = 1;
int64 int = 2; int64 int = 2;

View File

@ -202,19 +202,16 @@ func QueryValueToJSON(input *types.QueryListRecordsRequest_ValueInput) ([]byte,
return nil, err return nil, err
} }
case *types.QueryListRecordsRequest_ValueInput_Int: case *types.QueryListRecordsRequest_ValueInput_Int:
err := nb.AssignInt(value.Int) err := nb.AssignInt(value.Int)
if err != nil { if err != nil {
return nil, err return nil, err
} }
case *types.QueryListRecordsRequest_ValueInput_Float: case *types.QueryListRecordsRequest_ValueInput_Float:
err := nb.AssignFloat(value.Float) err := nb.AssignFloat(value.Float)
if err != nil { if err != nil {
return nil, err return nil, err
} }
case *types.QueryListRecordsRequest_ValueInput_Boolean: case *types.QueryListRecordsRequest_ValueInput_Boolean:
err := nb.AssignBool(value.Boolean) err := nb.AssignBool(value.Boolean)
if err != nil { if err != nil {
return nil, err return nil, err