We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the KVOperations to reflect the following model.
message KVOperations { repeated KVOperation operations = 1; } message KVOperation { string key = 1; bytes value = 2; oneof value { string string = 1; bytes bytes = 2; uint64 uint64 = 3; int64 int64 = 4; uint32 uint32 = 5; int32 int32 = 6; string bigint = 7; string bigdecimal = 8; bool bool = 9; } Op op = 3; enum Op { UNSET = 0; SET = 1; DELETE = 2; ADD = 3; MAX = 4; MIN = 5; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Update the KVOperations to reflect the following model.
The text was updated successfully, but these errors were encountered: