feat: add struct and list data type (#277)
* feat: add struct and list data type * type extensions * feat: extend column type * chore: rename fields * add value enum item * feat: add value * refactor: item->items * feat: use single ListValue/StructValue for Row and Column
This commit is contained in:
@@ -76,5 +76,16 @@ message Value {
|
||||
int64 interval_day_time_value = 25;
|
||||
IntervalMonthDayNano interval_month_day_nano_value = 26;
|
||||
Decimal128 decimal128_value = 31;
|
||||
|
||||
ListValue list_value = 40;
|
||||
StructValue struct_value = 41;
|
||||
}
|
||||
}
|
||||
|
||||
message ListValue {
|
||||
repeated Value items = 1;
|
||||
}
|
||||
|
||||
message StructValue {
|
||||
repeated Value items = 2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user