mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
12 lines
191 B
Protocol Buffer
12 lines
191 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Message
|
|
{
|
|
uint32 ipv4 = 1;
|
|
bytes ipv4_bytes = 2;
|
|
int64 ipv4_int64 = 3;
|
|
int32 date32 = 4;
|
|
bytes date32_bytes = 5;
|
|
int64 date32_int64 = 6;
|
|
}
|