refactor: remove duration type (#158)

This commit is contained in:
Jeremyhi
2024-04-28 16:34:50 +08:00
committed by GitHub
parent 1de2113d4e
commit aba235025a
15 changed files with 87 additions and 2318 deletions
-4
View File
@@ -57,10 +57,6 @@ message Column {
repeated int32 interval_year_month_values = 24;
repeated int64 interval_day_time_values = 25;
repeated IntervalMonthDayNano interval_month_day_nano_values = 26;
repeated int64 duration_second_values = 27;
repeated int64 duration_millisecond_values = 28;
repeated int64 duration_microsecond_values = 29;
repeated int64 duration_nanosecond_values = 30;
repeated Decimal128 decimal128_values = 31;
}
// The array of non-null values in this column.
-4
View File
@@ -106,10 +106,6 @@ enum ColumnDataType {
INTERVAL_YEAR_MONTH = 23;
INTERVAL_DAY_TIME = 24;
INTERVAL_MONTH_DAY_NANO = 25;
DURATION_SECOND = 26;
DURATION_MILLISECOND = 27;
DURATION_MICROSECOND = 28;
DURATION_NANOSECOND = 29;
DECIMAL128 = 30;
}
-4
View File
@@ -69,10 +69,6 @@ message Value {
int32 interval_year_month_value = 24;
int64 interval_day_time_value = 25;
IntervalMonthDayNano interval_month_day_nano_value = 26;
int64 duration_second_value = 27;
int64 duration_millisecond_value = 28;
int64 duration_microsecond_value = 29;
int64 duration_nanosecond_value = 30;
Decimal128 decimal128_value = 31;
}
}