mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 05:12:54 +00:00
23 lines
294 B
Protocol Buffer
23 lines
294 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package greptime.v1;
|
|
|
|
message RequestHeader {
|
|
string tenant = 1;
|
|
}
|
|
|
|
message ExprHeader {
|
|
uint32 version = 1;
|
|
}
|
|
|
|
message ResultHeader {
|
|
uint32 version = 1;
|
|
uint32 code = 2;
|
|
string err_msg = 3;
|
|
}
|
|
|
|
message MutateResult {
|
|
uint32 success = 1;
|
|
uint32 failure = 2;
|
|
}
|