all fields are optional

This commit is contained in:
chrislu
2024-04-12 13:29:35 -07:00
parent d45a372615
commit 0cbf364a3d
2 changed files with 41 additions and 80 deletions

View File

@@ -12,15 +12,14 @@ message Field {
string name = 1;
Type type = 2;
int32 index = 3;
bool is_optional = 4;
bool is_repeated = 5;
bool is_repeated = 4;
}
message Type {
oneof kind {
ScalarType scalar_type = 1;
RecordType record_type = 2;
MapType map_type = 3;
// MapType map_type = 3;
}
}