Skip to content

Commit

Permalink
feat: introduce vector type
Browse files Browse the repository at this point in the history
Signed-off-by: Zhenchi <[email protected]>
  • Loading branch information
zhongzc committed Nov 8, 2024
1 parent 396206c commit 078e1bd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions proto/greptime/v1/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ enum ColumnDataType {
INTERVAL_MONTH_DAY_NANO = 25;
DECIMAL128 = 30;
JSON = 31;
VECTOR = 32;
}

message IntervalMonthDayNano {
Expand All @@ -138,6 +139,7 @@ message ColumnDataTypeExtension {
DecimalTypeExtension decimal_type = 1;
// Marks the binary column in proto is actually a JSON column.
JsonTypeExtension json_type = 2;
VectorTypeExtension vector_type = 3;
}
}

Expand All @@ -150,6 +152,10 @@ enum JsonTypeExtension {
JSON_BINARY = 0;
}

message VectorTypeExtension {
uint32 dim = 1;
}

// Additional options for the column.
message ColumnOptions {
// Supported keys:
Expand Down

0 comments on commit 078e1bd

Please sign in to comment.