feat: interal type for row protocol, and multi row deletes (#80)

This commit is contained in:
JeremyHi
2023-08-16 15:09:24 +08:00
committed by GitHub
parent dbb8e524ca
commit fa79839bbb
20 changed files with 3928 additions and 1783 deletions
+6
View File
@@ -103,3 +103,9 @@ enum ColumnDataType {
INTERVAL_DAY_TIME = 24;
INTERVAL_MONTH_DAY_NANO = 25;
}
message IntervalMonthDayNano {
int32 months = 1;
int32 days = 2;
int64 nanoseconds = 3;
}