mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
12 lines
141 B
Protocol Buffer
12 lines
141 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message Nested {
|
||
|
int32 a = 1;
|
||
|
string b = 2;
|
||
|
repeated int32 c = 3;
|
||
|
};
|
||
|
|
||
|
message Message {
|
||
|
Nested x = 1;
|
||
|
};
|