mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 14:22:58 +00:00
* SelectExpr: change to oneof expr * Convert between Vec<u8> and SelectResult * Chore: use encode_to_vec and decode, instead of encode_length_delimited_to_vec and decode_length_delimited * Chore: move bitset into separate file * Grpc select impl
11 lines
163 B
Protocol Buffer
11 lines
163 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package greptime.v1.codec;
|
|
|
|
import "greptime/v1/column.proto";
|
|
|
|
message InsertBatch {
|
|
repeated Column columns = 1;
|
|
uint32 row_count = 2;
|
|
}
|