We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67bb1d5 commit 75c5fb5Copy full SHA for 75c5fb5
proto/greptime/v1/common.proto
@@ -118,6 +118,7 @@ enum ColumnDataType {
118
INTERVAL_MONTH_DAY_NANO = 25;
119
DECIMAL128 = 30;
120
JSON = 31;
121
+ VECTOR = 32;
122
}
123
124
message IntervalMonthDayNano {
@@ -138,6 +139,7 @@ message ColumnDataTypeExtension {
138
139
DecimalTypeExtension decimal_type = 1;
140
// Marks the binary column in proto is actually a JSON column.
141
JsonTypeExtension json_type = 2;
142
+ VectorTypeExtension vector_type = 3;
143
144
145
@@ -150,6 +152,10 @@ enum JsonTypeExtension {
150
152
JSON_BINARY = 0;
151
153
154
155
+message VectorTypeExtension {
156
+ uint32 dim = 1;
157
+}
158
+
159
// Additional options for the column.
160
message ColumnOptions {
161
// Supported keys:
0 commit comments