chore: add optional for datatype, rename data_type to datatype (#258)

This commit is contained in:
fys
2022-09-14 18:07:22 +08:00
committed by GitHub
parent 0dce8946d4
commit ef40b12749
8 changed files with 48 additions and 37 deletions

View File

@@ -49,12 +49,12 @@ message Column {
bytes null_mask = 4;
// Helpful in creating vector from column.
ColumnDataType datatype = 5;
optional ColumnDataType datatype = 5;
}
message ColumnDef {
string name = 1;
ColumnDataType data_type = 2;
ColumnDataType datatype = 2;
bool is_nullable = 3;
}