1 Star 0 Fork 0

hacrwang/octosql

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
values.proto 609 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jakub Martin 提交于 2020-01-10 15:11 . Record include value
syntax = "proto3";
package octosql;
option go_package = "github.com/cube2222/octosql";
import "google/protobuf/timestamp.proto";
import "google/protobuf/duration.proto";
message Value {
oneof value {
bool null = 1;
bool phantom = 2;
int64 int = 3;
double float = 4;
bool bool = 5;
string string = 6;
google.protobuf.Timestamp time = 7;
google.protobuf.Duration duration = 8;
Tuple tuple = 9;
Object object = 10;
}
}
message Tuple {
repeated Value fields = 1;
}
message Object {
map<string, Value> fields = 1;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hcrwang/octosql.git
git@gitee.com:hcrwang/octosql.git
hcrwang
octosql
octosql
master

搜索帮助