@zilliz/milvus2-sdk-node 2.6.0 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/milvus/MilvusClient.js +7 -1
- package/dist/milvus/MilvusClient.js.map +1 -1
- package/dist/milvus/const/milvus.d.ts +38 -4
- package/dist/milvus/const/milvus.js +41 -2
- package/dist/milvus/const/milvus.js.map +1 -1
- package/dist/milvus/grpc/BaseClient.d.ts +1 -0
- package/dist/milvus/grpc/BaseClient.js +1 -0
- package/dist/milvus/grpc/BaseClient.js.map +1 -1
- package/dist/milvus/grpc/Collection.d.ts +2 -2
- package/dist/milvus/grpc/Collection.js +23 -4
- package/dist/milvus/grpc/Collection.js.map +1 -1
- package/dist/milvus/grpc/Data.d.ts +58 -21
- package/dist/milvus/grpc/Data.js +153 -61
- package/dist/milvus/grpc/Data.js.map +1 -1
- package/dist/milvus/proto-json/milvus.base.d.ts +769 -8
- package/dist/milvus/proto-json/milvus.base.js +793 -11
- package/dist/milvus/proto-json/milvus.base.js.map +1 -1
- package/dist/milvus/proto-json/milvus.d.ts +769 -8
- package/dist/milvus/proto-json/milvus.js +793 -11
- package/dist/milvus/proto-json/milvus.js.map +1 -1
- package/dist/milvus/proto-json/schema.base.d.ts +212 -0
- package/dist/milvus/proto-json/schema.base.js +220 -5
- package/dist/milvus/proto-json/schema.base.js.map +1 -1
- package/dist/milvus/types/Collection.d.ts +8 -2
- package/dist/milvus/types/Common.d.ts +3 -0
- package/dist/milvus/types/Data.d.ts +1 -300
- package/dist/milvus/types/Data.js +0 -1
- package/dist/milvus/types/Data.js.map +1 -1
- package/dist/milvus/types/DataTypes.d.ts +35 -0
- package/dist/milvus/types/DataTypes.js +3 -0
- package/dist/milvus/types/DataTypes.js.map +1 -0
- package/dist/milvus/types/HighLevel.d.ts +1 -1
- package/dist/milvus/types/Insert.d.ts +66 -0
- package/dist/milvus/types/Insert.js +4 -0
- package/dist/milvus/types/Insert.js.map +1 -0
- package/dist/milvus/types/Search.d.ts +147 -0
- package/dist/milvus/types/Search.js +4 -0
- package/dist/milvus/types/Search.js.map +1 -0
- package/dist/milvus/types/Segments.d.ts +68 -0
- package/dist/milvus/types/Segments.js +3 -0
- package/dist/milvus/types/Segments.js.map +1 -0
- package/dist/milvus/types/index.d.ts +4 -0
- package/dist/milvus/types/index.js +4 -0
- package/dist/milvus/types/index.js.map +1 -1
- package/dist/milvus/types.d.ts +4 -0
- package/dist/milvus/types.js +4 -1
- package/dist/milvus/types.js.map +1 -1
- package/dist/milvus/utils/Bytes.d.ts +5 -5
- package/dist/milvus/utils/Bytes.js +11 -10
- package/dist/milvus/utils/Bytes.js.map +1 -1
- package/dist/milvus/utils/Connection.d.ts +14 -0
- package/dist/milvus/utils/Connection.js +24 -0
- package/dist/milvus/utils/Connection.js.map +1 -0
- package/dist/milvus/utils/Data.d.ts +43 -0
- package/dist/milvus/utils/Data.js +297 -0
- package/dist/milvus/utils/Data.js.map +1 -0
- package/dist/milvus/utils/Format.d.ts +1 -233
- package/dist/milvus/utils/Format.js +108 -728
- package/dist/milvus/utils/Format.js.map +1 -1
- package/dist/milvus/utils/Function.d.ts +1 -21
- package/dist/milvus/utils/Function.js +1 -79
- package/dist/milvus/utils/Function.js.map +1 -1
- package/dist/milvus/utils/Schema.d.ts +59 -0
- package/dist/milvus/utils/Schema.js +256 -0
- package/dist/milvus/utils/Schema.js.map +1 -0
- package/dist/milvus/utils/Search.d.ts +193 -0
- package/dist/milvus/utils/Search.js +419 -0
- package/dist/milvus/utils/Search.js.map +1 -0
- package/dist/milvus/utils/index.d.ts +4 -0
- package/dist/milvus/utils/index.js +4 -0
- package/dist/milvus/utils/index.js.map +1 -1
- package/dist/sdk.json +1 -1
- package/package.json +2 -2
|
@@ -42,6 +42,10 @@ exports.default = {
|
|
|
42
42
|
"requestType": "DescribeCollectionRequest",
|
|
43
43
|
"responseType": "DescribeCollectionResponse"
|
|
44
44
|
},
|
|
45
|
+
"BatchDescribeCollection": {
|
|
46
|
+
"requestType": "BatchDescribeCollectionRequest",
|
|
47
|
+
"responseType": "BatchDescribeCollectionResponse"
|
|
48
|
+
},
|
|
45
49
|
"GetCollectionStatistics": {
|
|
46
50
|
"requestType": "GetCollectionStatisticsRequest",
|
|
47
51
|
"responseType": "GetCollectionStatisticsResponse"
|
|
@@ -58,6 +62,18 @@ exports.default = {
|
|
|
58
62
|
"requestType": "AlterCollectionFieldRequest",
|
|
59
63
|
"responseType": "common.Status"
|
|
60
64
|
},
|
|
65
|
+
"AddCollectionFunction": {
|
|
66
|
+
"requestType": "AddCollectionFunctionRequest",
|
|
67
|
+
"responseType": "common.Status"
|
|
68
|
+
},
|
|
69
|
+
"AlterCollectionFunction": {
|
|
70
|
+
"requestType": "AlterCollectionFunctionRequest",
|
|
71
|
+
"responseType": "common.Status"
|
|
72
|
+
},
|
|
73
|
+
"DropCollectionFunction": {
|
|
74
|
+
"requestType": "DropCollectionFunctionRequest",
|
|
75
|
+
"responseType": "common.Status"
|
|
76
|
+
},
|
|
61
77
|
"CreatePartition": {
|
|
62
78
|
"requestType": "CreatePartitionRequest",
|
|
63
79
|
"responseType": "common.Status"
|
|
@@ -418,6 +434,18 @@ exports.default = {
|
|
|
418
434
|
"requestType": "RunAnalyzerRequest",
|
|
419
435
|
"responseType": "RunAnalyzerResponse"
|
|
420
436
|
},
|
|
437
|
+
"AddFileResource": {
|
|
438
|
+
"requestType": "AddFileResourceRequest",
|
|
439
|
+
"responseType": "common.Status"
|
|
440
|
+
},
|
|
441
|
+
"RemoveFileResource": {
|
|
442
|
+
"requestType": "RemoveFileResourceRequest",
|
|
443
|
+
"responseType": "common.Status"
|
|
444
|
+
},
|
|
445
|
+
"ListFileResources": {
|
|
446
|
+
"requestType": "ListFileResourcesRequest",
|
|
447
|
+
"responseType": "ListFileResourcesResponse"
|
|
448
|
+
},
|
|
421
449
|
"AddUserTags": {
|
|
422
450
|
"requestType": "AddUserTagsRequest",
|
|
423
451
|
"responseType": "common.Status"
|
|
@@ -445,6 +473,20 @@ exports.default = {
|
|
|
445
473
|
"ListRowPolicies": {
|
|
446
474
|
"requestType": "ListRowPoliciesRequest",
|
|
447
475
|
"responseType": "ListRowPoliciesResponse"
|
|
476
|
+
},
|
|
477
|
+
"UpdateReplicateConfiguration": {
|
|
478
|
+
"requestType": "UpdateReplicateConfigurationRequest",
|
|
479
|
+
"responseType": "common.Status"
|
|
480
|
+
},
|
|
481
|
+
"GetReplicateInfo": {
|
|
482
|
+
"requestType": "GetReplicateInfoRequest",
|
|
483
|
+
"responseType": "GetReplicateInfoResponse"
|
|
484
|
+
},
|
|
485
|
+
"CreateReplicateStream": {
|
|
486
|
+
"requestType": "ReplicateRequest",
|
|
487
|
+
"requestStream": true,
|
|
488
|
+
"responseType": "ReplicateResponse",
|
|
489
|
+
"responseStream": true
|
|
448
490
|
}
|
|
449
491
|
}
|
|
450
492
|
},
|
|
@@ -893,6 +935,42 @@ exports.default = {
|
|
|
893
935
|
}
|
|
894
936
|
}
|
|
895
937
|
},
|
|
938
|
+
"BatchDescribeCollectionRequest": {
|
|
939
|
+
"options": {
|
|
940
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
941
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeDescribeCollection",
|
|
942
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
943
|
+
},
|
|
944
|
+
"fields": {
|
|
945
|
+
"dbName": {
|
|
946
|
+
"type": "string",
|
|
947
|
+
"id": 1
|
|
948
|
+
},
|
|
949
|
+
"collectionName": {
|
|
950
|
+
"rule": "repeated",
|
|
951
|
+
"type": "string",
|
|
952
|
+
"id": 2
|
|
953
|
+
},
|
|
954
|
+
"collectionID": {
|
|
955
|
+
"rule": "repeated",
|
|
956
|
+
"type": "int64",
|
|
957
|
+
"id": 3
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"BatchDescribeCollectionResponse": {
|
|
962
|
+
"fields": {
|
|
963
|
+
"status": {
|
|
964
|
+
"type": "common.Status",
|
|
965
|
+
"id": 1
|
|
966
|
+
},
|
|
967
|
+
"responses": {
|
|
968
|
+
"rule": "repeated",
|
|
969
|
+
"type": "DescribeCollectionResponse",
|
|
970
|
+
"id": 2
|
|
971
|
+
}
|
|
972
|
+
}
|
|
973
|
+
},
|
|
896
974
|
"LoadCollectionRequest": {
|
|
897
975
|
"options": {
|
|
898
976
|
"(common.privilege_ext_obj).object_type": "Collection",
|
|
@@ -1114,6 +1192,11 @@ exports.default = {
|
|
|
1114
1192
|
"rule": "repeated",
|
|
1115
1193
|
"type": "bool",
|
|
1116
1194
|
"id": 7
|
|
1195
|
+
},
|
|
1196
|
+
"shardsNum": {
|
|
1197
|
+
"rule": "repeated",
|
|
1198
|
+
"type": "int32",
|
|
1199
|
+
"id": 8
|
|
1117
1200
|
}
|
|
1118
1201
|
}
|
|
1119
1202
|
},
|
|
@@ -1735,6 +1818,13 @@ exports.default = {
|
|
|
1735
1818
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeInsert",
|
|
1736
1819
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
1737
1820
|
},
|
|
1821
|
+
"oneofs": {
|
|
1822
|
+
"_namespace": {
|
|
1823
|
+
"oneof": [
|
|
1824
|
+
"namespace"
|
|
1825
|
+
]
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1738
1828
|
"fields": {
|
|
1739
1829
|
"base": {
|
|
1740
1830
|
"type": "common.MsgBase",
|
|
@@ -1769,6 +1859,13 @@ exports.default = {
|
|
|
1769
1859
|
"schemaTimestamp": {
|
|
1770
1860
|
"type": "uint64",
|
|
1771
1861
|
"id": 8
|
|
1862
|
+
},
|
|
1863
|
+
"namespace": {
|
|
1864
|
+
"type": "string",
|
|
1865
|
+
"id": 9,
|
|
1866
|
+
"options": {
|
|
1867
|
+
"proto3_optional": true
|
|
1868
|
+
}
|
|
1772
1869
|
}
|
|
1773
1870
|
}
|
|
1774
1871
|
},
|
|
@@ -1801,12 +1898,110 @@ exports.default = {
|
|
|
1801
1898
|
}
|
|
1802
1899
|
}
|
|
1803
1900
|
},
|
|
1901
|
+
"AddCollectionFunctionRequest": {
|
|
1902
|
+
"options": {
|
|
1903
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
1904
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeAddCollectionFunction",
|
|
1905
|
+
"(common.privilege_ext_obj).object_name_index": 3
|
|
1906
|
+
},
|
|
1907
|
+
"fields": {
|
|
1908
|
+
"base": {
|
|
1909
|
+
"type": "common.MsgBase",
|
|
1910
|
+
"id": 1
|
|
1911
|
+
},
|
|
1912
|
+
"dbName": {
|
|
1913
|
+
"type": "string",
|
|
1914
|
+
"id": 2
|
|
1915
|
+
},
|
|
1916
|
+
"collectionName": {
|
|
1917
|
+
"type": "string",
|
|
1918
|
+
"id": 3
|
|
1919
|
+
},
|
|
1920
|
+
"collectionID": {
|
|
1921
|
+
"type": "int64",
|
|
1922
|
+
"id": 4
|
|
1923
|
+
},
|
|
1924
|
+
"functionSchema": {
|
|
1925
|
+
"type": "schema.FunctionSchema",
|
|
1926
|
+
"id": 5
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
"AlterCollectionFunctionRequest": {
|
|
1931
|
+
"options": {
|
|
1932
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
1933
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeDropCollectionFunction",
|
|
1934
|
+
"(common.privilege_ext_obj).object_name_index": 3
|
|
1935
|
+
},
|
|
1936
|
+
"fields": {
|
|
1937
|
+
"base": {
|
|
1938
|
+
"type": "common.MsgBase",
|
|
1939
|
+
"id": 1
|
|
1940
|
+
},
|
|
1941
|
+
"dbName": {
|
|
1942
|
+
"type": "string",
|
|
1943
|
+
"id": 2
|
|
1944
|
+
},
|
|
1945
|
+
"collectionName": {
|
|
1946
|
+
"type": "string",
|
|
1947
|
+
"id": 3
|
|
1948
|
+
},
|
|
1949
|
+
"collectionID": {
|
|
1950
|
+
"type": "int64",
|
|
1951
|
+
"id": 4
|
|
1952
|
+
},
|
|
1953
|
+
"functionName": {
|
|
1954
|
+
"type": "string",
|
|
1955
|
+
"id": 5
|
|
1956
|
+
},
|
|
1957
|
+
"functionSchema": {
|
|
1958
|
+
"type": "schema.FunctionSchema",
|
|
1959
|
+
"id": 6
|
|
1960
|
+
}
|
|
1961
|
+
}
|
|
1962
|
+
},
|
|
1963
|
+
"DropCollectionFunctionRequest": {
|
|
1964
|
+
"options": {
|
|
1965
|
+
"(common.privilege_ext_obj).object_type": "Collection",
|
|
1966
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeDropCollectionFunction",
|
|
1967
|
+
"(common.privilege_ext_obj).object_name_index": 3
|
|
1968
|
+
},
|
|
1969
|
+
"fields": {
|
|
1970
|
+
"base": {
|
|
1971
|
+
"type": "common.MsgBase",
|
|
1972
|
+
"id": 1
|
|
1973
|
+
},
|
|
1974
|
+
"dbName": {
|
|
1975
|
+
"type": "string",
|
|
1976
|
+
"id": 2
|
|
1977
|
+
},
|
|
1978
|
+
"collectionName": {
|
|
1979
|
+
"type": "string",
|
|
1980
|
+
"id": 3
|
|
1981
|
+
},
|
|
1982
|
+
"collectionID": {
|
|
1983
|
+
"type": "int64",
|
|
1984
|
+
"id": 4
|
|
1985
|
+
},
|
|
1986
|
+
"functionName": {
|
|
1987
|
+
"type": "string",
|
|
1988
|
+
"id": 5
|
|
1989
|
+
}
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1804
1992
|
"UpsertRequest": {
|
|
1805
1993
|
"options": {
|
|
1806
1994
|
"(common.privilege_ext_obj).object_type": "Collection",
|
|
1807
1995
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeUpsert",
|
|
1808
1996
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
1809
1997
|
},
|
|
1998
|
+
"oneofs": {
|
|
1999
|
+
"_namespace": {
|
|
2000
|
+
"oneof": [
|
|
2001
|
+
"namespace"
|
|
2002
|
+
]
|
|
2003
|
+
}
|
|
2004
|
+
},
|
|
1810
2005
|
"fields": {
|
|
1811
2006
|
"base": {
|
|
1812
2007
|
"type": "common.MsgBase",
|
|
@@ -1841,6 +2036,17 @@ exports.default = {
|
|
|
1841
2036
|
"schemaTimestamp": {
|
|
1842
2037
|
"type": "uint64",
|
|
1843
2038
|
"id": 8
|
|
2039
|
+
},
|
|
2040
|
+
"partialUpdate": {
|
|
2041
|
+
"type": "bool",
|
|
2042
|
+
"id": 9
|
|
2043
|
+
},
|
|
2044
|
+
"namespace": {
|
|
2045
|
+
"type": "string",
|
|
2046
|
+
"id": 10,
|
|
2047
|
+
"options": {
|
|
2048
|
+
"proto3_optional": true
|
|
2049
|
+
}
|
|
1844
2050
|
}
|
|
1845
2051
|
}
|
|
1846
2052
|
},
|
|
@@ -1930,6 +2136,13 @@ exports.default = {
|
|
|
1930
2136
|
}
|
|
1931
2137
|
},
|
|
1932
2138
|
"SubSearchRequest": {
|
|
2139
|
+
"oneofs": {
|
|
2140
|
+
"_namespace": {
|
|
2141
|
+
"oneof": [
|
|
2142
|
+
"namespace"
|
|
2143
|
+
]
|
|
2144
|
+
}
|
|
2145
|
+
},
|
|
1933
2146
|
"fields": {
|
|
1934
2147
|
"dsl": {
|
|
1935
2148
|
"type": "string",
|
|
@@ -1956,6 +2169,13 @@ exports.default = {
|
|
|
1956
2169
|
"keyType": "string",
|
|
1957
2170
|
"type": "schema.TemplateValue",
|
|
1958
2171
|
"id": 6
|
|
2172
|
+
},
|
|
2173
|
+
"namespace": {
|
|
2174
|
+
"type": "string",
|
|
2175
|
+
"id": 7,
|
|
2176
|
+
"options": {
|
|
2177
|
+
"proto3_optional": true
|
|
2178
|
+
}
|
|
1959
2179
|
}
|
|
1960
2180
|
}
|
|
1961
2181
|
},
|
|
@@ -1965,6 +2185,13 @@ exports.default = {
|
|
|
1965
2185
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeSearch",
|
|
1966
2186
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
1967
2187
|
},
|
|
2188
|
+
"oneofs": {
|
|
2189
|
+
"_namespace": {
|
|
2190
|
+
"oneof": [
|
|
2191
|
+
"namespace"
|
|
2192
|
+
]
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
1968
2195
|
"fields": {
|
|
1969
2196
|
"base": {
|
|
1970
2197
|
"type": "common.MsgBase",
|
|
@@ -2046,6 +2273,17 @@ exports.default = {
|
|
|
2046
2273
|
"functionScore": {
|
|
2047
2274
|
"type": "schema.FunctionScore",
|
|
2048
2275
|
"id": 19
|
|
2276
|
+
},
|
|
2277
|
+
"namespace": {
|
|
2278
|
+
"type": "string",
|
|
2279
|
+
"id": 20,
|
|
2280
|
+
"options": {
|
|
2281
|
+
"proto3_optional": true
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
"highlighter": {
|
|
2285
|
+
"type": "common.Highlighter",
|
|
2286
|
+
"id": 21
|
|
2049
2287
|
}
|
|
2050
2288
|
}
|
|
2051
2289
|
},
|
|
@@ -2094,6 +2332,13 @@ exports.default = {
|
|
|
2094
2332
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeSearch",
|
|
2095
2333
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
2096
2334
|
},
|
|
2335
|
+
"oneofs": {
|
|
2336
|
+
"_namespace": {
|
|
2337
|
+
"oneof": [
|
|
2338
|
+
"namespace"
|
|
2339
|
+
]
|
|
2340
|
+
}
|
|
2341
|
+
},
|
|
2097
2342
|
"fields": {
|
|
2098
2343
|
"base": {
|
|
2099
2344
|
"type": "common.MsgBase",
|
|
@@ -2150,6 +2395,13 @@ exports.default = {
|
|
|
2150
2395
|
"functionScore": {
|
|
2151
2396
|
"type": "schema.FunctionScore",
|
|
2152
2397
|
"id": 13
|
|
2398
|
+
},
|
|
2399
|
+
"namespace": {
|
|
2400
|
+
"type": "string",
|
|
2401
|
+
"id": 14,
|
|
2402
|
+
"options": {
|
|
2403
|
+
"proto3_optional": true
|
|
2404
|
+
}
|
|
2153
2405
|
}
|
|
2154
2406
|
}
|
|
2155
2407
|
},
|
|
@@ -2218,6 +2470,13 @@ exports.default = {
|
|
|
2218
2470
|
"(common.privilege_ext_obj).object_privilege": "PrivilegeQuery",
|
|
2219
2471
|
"(common.privilege_ext_obj).object_name_index": 3
|
|
2220
2472
|
},
|
|
2473
|
+
"oneofs": {
|
|
2474
|
+
"_namespace": {
|
|
2475
|
+
"oneof": [
|
|
2476
|
+
"namespace"
|
|
2477
|
+
]
|
|
2478
|
+
}
|
|
2479
|
+
},
|
|
2221
2480
|
"fields": {
|
|
2222
2481
|
"base": {
|
|
2223
2482
|
"type": "common.MsgBase",
|
|
@@ -2274,6 +2533,13 @@ exports.default = {
|
|
|
2274
2533
|
"keyType": "string",
|
|
2275
2534
|
"type": "schema.TemplateValue",
|
|
2276
2535
|
"id": 13
|
|
2536
|
+
},
|
|
2537
|
+
"namespace": {
|
|
2538
|
+
"type": "string",
|
|
2539
|
+
"id": 14,
|
|
2540
|
+
"options": {
|
|
2541
|
+
"proto3_optional": true
|
|
2542
|
+
}
|
|
2277
2543
|
}
|
|
2278
2544
|
}
|
|
2279
2545
|
},
|
|
@@ -2417,6 +2683,19 @@ exports.default = {
|
|
|
2417
2683
|
}
|
|
2418
2684
|
}
|
|
2419
2685
|
},
|
|
2686
|
+
"FlushAllTarget": {
|
|
2687
|
+
"fields": {
|
|
2688
|
+
"dbName": {
|
|
2689
|
+
"type": "string",
|
|
2690
|
+
"id": 1
|
|
2691
|
+
},
|
|
2692
|
+
"collectionNames": {
|
|
2693
|
+
"rule": "repeated",
|
|
2694
|
+
"type": "string",
|
|
2695
|
+
"id": 2
|
|
2696
|
+
}
|
|
2697
|
+
}
|
|
2698
|
+
},
|
|
2420
2699
|
"FlushAllRequest": {
|
|
2421
2700
|
"options": {
|
|
2422
2701
|
"(common.privilege_ext_obj).object_type": "Global",
|
|
@@ -2430,7 +2709,15 @@ exports.default = {
|
|
|
2430
2709
|
},
|
|
2431
2710
|
"dbName": {
|
|
2432
2711
|
"type": "string",
|
|
2433
|
-
"id": 2
|
|
2712
|
+
"id": 2,
|
|
2713
|
+
"options": {
|
|
2714
|
+
"deprecated": true
|
|
2715
|
+
}
|
|
2716
|
+
},
|
|
2717
|
+
"flushTargets": {
|
|
2718
|
+
"rule": "repeated",
|
|
2719
|
+
"type": "FlushAllTarget",
|
|
2720
|
+
"id": 3
|
|
2434
2721
|
}
|
|
2435
2722
|
}
|
|
2436
2723
|
},
|
|
@@ -2443,6 +2730,53 @@ exports.default = {
|
|
|
2443
2730
|
"flushAllTs": {
|
|
2444
2731
|
"type": "uint64",
|
|
2445
2732
|
"id": 2
|
|
2733
|
+
},
|
|
2734
|
+
"flushResults": {
|
|
2735
|
+
"rule": "repeated",
|
|
2736
|
+
"type": "FlushAllResult",
|
|
2737
|
+
"id": 3
|
|
2738
|
+
}
|
|
2739
|
+
}
|
|
2740
|
+
},
|
|
2741
|
+
"FlushAllResult": {
|
|
2742
|
+
"fields": {
|
|
2743
|
+
"dbName": {
|
|
2744
|
+
"type": "string",
|
|
2745
|
+
"id": 1
|
|
2746
|
+
},
|
|
2747
|
+
"collectionResults": {
|
|
2748
|
+
"rule": "repeated",
|
|
2749
|
+
"type": "FlushCollectionResult",
|
|
2750
|
+
"id": 2
|
|
2751
|
+
}
|
|
2752
|
+
}
|
|
2753
|
+
},
|
|
2754
|
+
"FlushCollectionResult": {
|
|
2755
|
+
"fields": {
|
|
2756
|
+
"collectionName": {
|
|
2757
|
+
"type": "string",
|
|
2758
|
+
"id": 1
|
|
2759
|
+
},
|
|
2760
|
+
"segmentIds": {
|
|
2761
|
+
"type": "schema.LongArray",
|
|
2762
|
+
"id": 2
|
|
2763
|
+
},
|
|
2764
|
+
"flushSegmentIds": {
|
|
2765
|
+
"type": "schema.LongArray",
|
|
2766
|
+
"id": 3
|
|
2767
|
+
},
|
|
2768
|
+
"sealTime": {
|
|
2769
|
+
"type": "int64",
|
|
2770
|
+
"id": 4
|
|
2771
|
+
},
|
|
2772
|
+
"flushTs": {
|
|
2773
|
+
"type": "uint64",
|
|
2774
|
+
"id": 5
|
|
2775
|
+
},
|
|
2776
|
+
"channelCps": {
|
|
2777
|
+
"keyType": "string",
|
|
2778
|
+
"type": "msg.MsgPosition",
|
|
2779
|
+
"id": 6
|
|
2446
2780
|
}
|
|
2447
2781
|
}
|
|
2448
2782
|
},
|
|
@@ -2475,8 +2809,12 @@ exports.default = {
|
|
|
2475
2809
|
"isSorted": {
|
|
2476
2810
|
"type": "bool",
|
|
2477
2811
|
"id": 7
|
|
2478
|
-
}
|
|
2479
|
-
|
|
2812
|
+
},
|
|
2813
|
+
"storageVersion": {
|
|
2814
|
+
"type": "int64",
|
|
2815
|
+
"id": 8
|
|
2816
|
+
}
|
|
2817
|
+
}
|
|
2480
2818
|
},
|
|
2481
2819
|
"GetPersistentSegmentInfoRequest": {
|
|
2482
2820
|
"fields": {
|
|
@@ -2560,6 +2898,10 @@ exports.default = {
|
|
|
2560
2898
|
"isSorted": {
|
|
2561
2899
|
"type": "bool",
|
|
2562
2900
|
"id": 12
|
|
2901
|
+
},
|
|
2902
|
+
"storageVersion": {
|
|
2903
|
+
"type": "int64",
|
|
2904
|
+
"id": 13
|
|
2563
2905
|
}
|
|
2564
2906
|
}
|
|
2565
2907
|
},
|
|
@@ -2766,6 +3108,10 @@ exports.default = {
|
|
|
2766
3108
|
"rule": "repeated",
|
|
2767
3109
|
"type": "int64",
|
|
2768
3110
|
"id": 8
|
|
3111
|
+
},
|
|
3112
|
+
"l0Compaction": {
|
|
3113
|
+
"type": "bool",
|
|
3114
|
+
"id": 9
|
|
2769
3115
|
}
|
|
2770
3116
|
}
|
|
2771
3117
|
},
|
|
@@ -2909,7 +3255,15 @@ exports.default = {
|
|
|
2909
3255
|
},
|
|
2910
3256
|
"dbName": {
|
|
2911
3257
|
"type": "string",
|
|
2912
|
-
"id": 3
|
|
3258
|
+
"id": 3,
|
|
3259
|
+
"options": {
|
|
3260
|
+
"deprecated": true
|
|
3261
|
+
}
|
|
3262
|
+
},
|
|
3263
|
+
"flushTargets": {
|
|
3264
|
+
"rule": "repeated",
|
|
3265
|
+
"type": "FlushAllTarget",
|
|
3266
|
+
"id": 4
|
|
2913
3267
|
}
|
|
2914
3268
|
}
|
|
2915
3269
|
},
|
|
@@ -2922,6 +3276,24 @@ exports.default = {
|
|
|
2922
3276
|
"flushed": {
|
|
2923
3277
|
"type": "bool",
|
|
2924
3278
|
"id": 2
|
|
3279
|
+
},
|
|
3280
|
+
"flushStates": {
|
|
3281
|
+
"rule": "repeated",
|
|
3282
|
+
"type": "FlushAllState",
|
|
3283
|
+
"id": 3
|
|
3284
|
+
}
|
|
3285
|
+
}
|
|
3286
|
+
},
|
|
3287
|
+
"FlushAllState": {
|
|
3288
|
+
"fields": {
|
|
3289
|
+
"dbName": {
|
|
3290
|
+
"type": "string",
|
|
3291
|
+
"id": 1
|
|
3292
|
+
},
|
|
3293
|
+
"collectionFlushStates": {
|
|
3294
|
+
"keyType": "string",
|
|
3295
|
+
"type": "bool",
|
|
3296
|
+
"id": 2
|
|
2925
3297
|
}
|
|
2926
3298
|
}
|
|
2927
3299
|
},
|
|
@@ -4602,6 +4974,94 @@ exports.default = {
|
|
|
4602
4974
|
}
|
|
4603
4975
|
}
|
|
4604
4976
|
},
|
|
4977
|
+
"FileResourceInfo": {
|
|
4978
|
+
"fields": {
|
|
4979
|
+
"id": {
|
|
4980
|
+
"type": "int64",
|
|
4981
|
+
"id": 1
|
|
4982
|
+
},
|
|
4983
|
+
"name": {
|
|
4984
|
+
"type": "string",
|
|
4985
|
+
"id": 2
|
|
4986
|
+
},
|
|
4987
|
+
"path": {
|
|
4988
|
+
"type": "string",
|
|
4989
|
+
"id": 3
|
|
4990
|
+
},
|
|
4991
|
+
"type": {
|
|
4992
|
+
"type": "common.FileResourceType",
|
|
4993
|
+
"id": 4
|
|
4994
|
+
}
|
|
4995
|
+
}
|
|
4996
|
+
},
|
|
4997
|
+
"AddFileResourceRequest": {
|
|
4998
|
+
"options": {
|
|
4999
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
5000
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeAddFileResource",
|
|
5001
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
5002
|
+
},
|
|
5003
|
+
"fields": {
|
|
5004
|
+
"base": {
|
|
5005
|
+
"type": "common.MsgBase",
|
|
5006
|
+
"id": 1
|
|
5007
|
+
},
|
|
5008
|
+
"name": {
|
|
5009
|
+
"type": "string",
|
|
5010
|
+
"id": 2
|
|
5011
|
+
},
|
|
5012
|
+
"path": {
|
|
5013
|
+
"type": "string",
|
|
5014
|
+
"id": 3
|
|
5015
|
+
},
|
|
5016
|
+
"type": {
|
|
5017
|
+
"type": "common.FileResourceType",
|
|
5018
|
+
"id": 4
|
|
5019
|
+
}
|
|
5020
|
+
}
|
|
5021
|
+
},
|
|
5022
|
+
"RemoveFileResourceRequest": {
|
|
5023
|
+
"options": {
|
|
5024
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
5025
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeRemoveFileResource",
|
|
5026
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
5027
|
+
},
|
|
5028
|
+
"fields": {
|
|
5029
|
+
"base": {
|
|
5030
|
+
"type": "common.MsgBase",
|
|
5031
|
+
"id": 1
|
|
5032
|
+
},
|
|
5033
|
+
"name": {
|
|
5034
|
+
"type": "string",
|
|
5035
|
+
"id": 2
|
|
5036
|
+
}
|
|
5037
|
+
}
|
|
5038
|
+
},
|
|
5039
|
+
"ListFileResourcesRequest": {
|
|
5040
|
+
"options": {
|
|
5041
|
+
"(common.privilege_ext_obj).object_type": "Global",
|
|
5042
|
+
"(common.privilege_ext_obj).object_privilege": "PrivilegeListFileResources",
|
|
5043
|
+
"(common.privilege_ext_obj).object_name_index": -1
|
|
5044
|
+
},
|
|
5045
|
+
"fields": {
|
|
5046
|
+
"base": {
|
|
5047
|
+
"type": "common.MsgBase",
|
|
5048
|
+
"id": 1
|
|
5049
|
+
}
|
|
5050
|
+
}
|
|
5051
|
+
},
|
|
5052
|
+
"ListFileResourcesResponse": {
|
|
5053
|
+
"fields": {
|
|
5054
|
+
"status": {
|
|
5055
|
+
"type": "common.Status",
|
|
5056
|
+
"id": 1
|
|
5057
|
+
},
|
|
5058
|
+
"resources": {
|
|
5059
|
+
"rule": "repeated",
|
|
5060
|
+
"type": "FileResourceInfo",
|
|
5061
|
+
"id": 2
|
|
5062
|
+
}
|
|
5063
|
+
}
|
|
5064
|
+
},
|
|
4605
5065
|
"RowPolicyAction": {
|
|
4606
5066
|
"values": {
|
|
4607
5067
|
"Query": 0,
|
|
@@ -4866,6 +5326,84 @@ exports.default = {
|
|
|
4866
5326
|
"id": 4
|
|
4867
5327
|
}
|
|
4868
5328
|
}
|
|
5329
|
+
},
|
|
5330
|
+
"UpdateReplicateConfigurationRequest": {
|
|
5331
|
+
"fields": {
|
|
5332
|
+
"replicateConfiguration": {
|
|
5333
|
+
"type": "common.ReplicateConfiguration",
|
|
5334
|
+
"id": 1
|
|
5335
|
+
}
|
|
5336
|
+
}
|
|
5337
|
+
},
|
|
5338
|
+
"GetReplicateInfoRequest": {
|
|
5339
|
+
"fields": {
|
|
5340
|
+
"sourceClusterId": {
|
|
5341
|
+
"type": "string",
|
|
5342
|
+
"id": 1
|
|
5343
|
+
},
|
|
5344
|
+
"targetPchannel": {
|
|
5345
|
+
"type": "string",
|
|
5346
|
+
"id": 2
|
|
5347
|
+
}
|
|
5348
|
+
}
|
|
5349
|
+
},
|
|
5350
|
+
"GetReplicateInfoResponse": {
|
|
5351
|
+
"fields": {
|
|
5352
|
+
"checkpoint": {
|
|
5353
|
+
"type": "common.ReplicateCheckpoint",
|
|
5354
|
+
"id": 1
|
|
5355
|
+
}
|
|
5356
|
+
}
|
|
5357
|
+
},
|
|
5358
|
+
"ReplicateMessage": {
|
|
5359
|
+
"fields": {
|
|
5360
|
+
"sourceClusterId": {
|
|
5361
|
+
"type": "string",
|
|
5362
|
+
"id": 1
|
|
5363
|
+
},
|
|
5364
|
+
"message": {
|
|
5365
|
+
"type": "common.ImmutableMessage",
|
|
5366
|
+
"id": 2
|
|
5367
|
+
}
|
|
5368
|
+
}
|
|
5369
|
+
},
|
|
5370
|
+
"ReplicateRequest": {
|
|
5371
|
+
"oneofs": {
|
|
5372
|
+
"request": {
|
|
5373
|
+
"oneof": [
|
|
5374
|
+
"replicateMessage"
|
|
5375
|
+
]
|
|
5376
|
+
}
|
|
5377
|
+
},
|
|
5378
|
+
"fields": {
|
|
5379
|
+
"replicateMessage": {
|
|
5380
|
+
"type": "ReplicateMessage",
|
|
5381
|
+
"id": 1
|
|
5382
|
+
}
|
|
5383
|
+
}
|
|
5384
|
+
},
|
|
5385
|
+
"ReplicateConfirmedMessageInfo": {
|
|
5386
|
+
"fields": {
|
|
5387
|
+
"confirmedTimeTick": {
|
|
5388
|
+
"type": "uint64",
|
|
5389
|
+
"id": 1
|
|
5390
|
+
}
|
|
5391
|
+
}
|
|
5392
|
+
},
|
|
5393
|
+
"ReplicateResponse": {
|
|
5394
|
+
"oneofs": {
|
|
5395
|
+
"response": {
|
|
5396
|
+
"oneof": [
|
|
5397
|
+
"replicateConfirmedMessageInfo"
|
|
5398
|
+
]
|
|
5399
|
+
}
|
|
5400
|
+
},
|
|
5401
|
+
"fields": {
|
|
5402
|
+
"replicateConfirmedMessageInfo": {
|
|
5403
|
+
"type": "ReplicateConfirmedMessageInfo",
|
|
5404
|
+
"id": 1
|
|
5405
|
+
}
|
|
5406
|
+
}
|
|
4869
5407
|
}
|
|
4870
5408
|
}
|
|
4871
5409
|
},
|
|
@@ -5054,7 +5592,13 @@ exports.default = {
|
|
|
5054
5592
|
"SparseFloatVector": 104,
|
|
5055
5593
|
"Int8Vector": 105,
|
|
5056
5594
|
"Int64": 5,
|
|
5057
|
-
"VarChar": 21
|
|
5595
|
+
"VarChar": 21,
|
|
5596
|
+
"EmbListBinaryVector": 300,
|
|
5597
|
+
"EmbListFloatVector": 301,
|
|
5598
|
+
"EmbListFloat16Vector": 302,
|
|
5599
|
+
"EmbListBFloat16Vector": 303,
|
|
5600
|
+
"EmbListSparseFloatVector": 304,
|
|
5601
|
+
"EmbListInt8Vector": 305
|
|
5058
5602
|
}
|
|
5059
5603
|
},
|
|
5060
5604
|
"PlaceholderValue": {
|
|
@@ -5114,6 +5658,9 @@ exports.default = {
|
|
|
5114
5658
|
"DescribeAlias": 113,
|
|
5115
5659
|
"ListAliases": 114,
|
|
5116
5660
|
"AlterCollectionField": 115,
|
|
5661
|
+
"AddCollectionFunction": 116,
|
|
5662
|
+
"AlterCollectionFunction": 117,
|
|
5663
|
+
"DropCollectionFunction": 118,
|
|
5117
5664
|
"CreatePartition": 200,
|
|
5118
5665
|
"DropPartition": 201,
|
|
5119
5666
|
"HasPartition": 202,
|
|
@@ -5398,7 +5945,13 @@ exports.default = {
|
|
|
5398
5945
|
"PrivilegeGroupCollectionAdmin": 68,
|
|
5399
5946
|
"PrivilegeGetImportProgress": 69,
|
|
5400
5947
|
"PrivilegeListImport": 70,
|
|
5401
|
-
"PrivilegeAddCollectionField": 71
|
|
5948
|
+
"PrivilegeAddCollectionField": 71,
|
|
5949
|
+
"PrivilegeAddFileResource": 72,
|
|
5950
|
+
"PrivilegeRemoveFileResource": 73,
|
|
5951
|
+
"PrivilegeListFileResources": 74,
|
|
5952
|
+
"PrivilegeAddCollectionFunction": 75,
|
|
5953
|
+
"PrivilegeAlterCollectionFunction": 76,
|
|
5954
|
+
"PrivilegeDropCollectionFunction": 77
|
|
5402
5955
|
}
|
|
5403
5956
|
},
|
|
5404
5957
|
"PrivilegeExt": {
|
|
@@ -5534,6 +6087,166 @@ exports.default = {
|
|
|
5534
6087
|
"HIGH": 0,
|
|
5535
6088
|
"LOW": 1
|
|
5536
6089
|
}
|
|
6090
|
+
},
|
|
6091
|
+
"FileResourceType": {
|
|
6092
|
+
"values": {
|
|
6093
|
+
"ANALYZER_DICTIONARY": 0
|
|
6094
|
+
}
|
|
6095
|
+
},
|
|
6096
|
+
"WALName": {
|
|
6097
|
+
"values": {
|
|
6098
|
+
"Unknown": 0,
|
|
6099
|
+
"RocksMQ": 1,
|
|
6100
|
+
"Pulsar": 2,
|
|
6101
|
+
"Kafka": 3,
|
|
6102
|
+
"WoodPecker": 4,
|
|
6103
|
+
"Test": 999
|
|
6104
|
+
}
|
|
6105
|
+
},
|
|
6106
|
+
"ReplicateConfiguration": {
|
|
6107
|
+
"fields": {
|
|
6108
|
+
"clusters": {
|
|
6109
|
+
"rule": "repeated",
|
|
6110
|
+
"type": "MilvusCluster",
|
|
6111
|
+
"id": 1
|
|
6112
|
+
},
|
|
6113
|
+
"crossClusterTopology": {
|
|
6114
|
+
"rule": "repeated",
|
|
6115
|
+
"type": "CrossClusterTopology",
|
|
6116
|
+
"id": 2
|
|
6117
|
+
}
|
|
6118
|
+
}
|
|
6119
|
+
},
|
|
6120
|
+
"ConnectionParam": {
|
|
6121
|
+
"fields": {
|
|
6122
|
+
"uri": {
|
|
6123
|
+
"type": "string",
|
|
6124
|
+
"id": 1
|
|
6125
|
+
},
|
|
6126
|
+
"token": {
|
|
6127
|
+
"type": "string",
|
|
6128
|
+
"id": 2
|
|
6129
|
+
}
|
|
6130
|
+
}
|
|
6131
|
+
},
|
|
6132
|
+
"MilvusCluster": {
|
|
6133
|
+
"fields": {
|
|
6134
|
+
"clusterId": {
|
|
6135
|
+
"type": "string",
|
|
6136
|
+
"id": 1
|
|
6137
|
+
},
|
|
6138
|
+
"connectionParam": {
|
|
6139
|
+
"type": "ConnectionParam",
|
|
6140
|
+
"id": 2
|
|
6141
|
+
},
|
|
6142
|
+
"pchannels": {
|
|
6143
|
+
"rule": "repeated",
|
|
6144
|
+
"type": "string",
|
|
6145
|
+
"id": 3
|
|
6146
|
+
}
|
|
6147
|
+
}
|
|
6148
|
+
},
|
|
6149
|
+
"CrossClusterTopology": {
|
|
6150
|
+
"fields": {
|
|
6151
|
+
"sourceClusterId": {
|
|
6152
|
+
"type": "string",
|
|
6153
|
+
"id": 1
|
|
6154
|
+
},
|
|
6155
|
+
"targetClusterId": {
|
|
6156
|
+
"type": "string",
|
|
6157
|
+
"id": 2
|
|
6158
|
+
}
|
|
6159
|
+
}
|
|
6160
|
+
},
|
|
6161
|
+
"MessageID": {
|
|
6162
|
+
"fields": {
|
|
6163
|
+
"id": {
|
|
6164
|
+
"type": "string",
|
|
6165
|
+
"id": 1
|
|
6166
|
+
},
|
|
6167
|
+
"WALName": {
|
|
6168
|
+
"type": "common.WALName",
|
|
6169
|
+
"id": 2
|
|
6170
|
+
}
|
|
6171
|
+
}
|
|
6172
|
+
},
|
|
6173
|
+
"ImmutableMessage": {
|
|
6174
|
+
"fields": {
|
|
6175
|
+
"id": {
|
|
6176
|
+
"type": "MessageID",
|
|
6177
|
+
"id": 1
|
|
6178
|
+
},
|
|
6179
|
+
"payload": {
|
|
6180
|
+
"type": "bytes",
|
|
6181
|
+
"id": 2
|
|
6182
|
+
},
|
|
6183
|
+
"properties": {
|
|
6184
|
+
"keyType": "string",
|
|
6185
|
+
"type": "string",
|
|
6186
|
+
"id": 3
|
|
6187
|
+
}
|
|
6188
|
+
}
|
|
6189
|
+
},
|
|
6190
|
+
"ReplicateCheckpoint": {
|
|
6191
|
+
"fields": {
|
|
6192
|
+
"clusterId": {
|
|
6193
|
+
"type": "string",
|
|
6194
|
+
"id": 1
|
|
6195
|
+
},
|
|
6196
|
+
"pchannel": {
|
|
6197
|
+
"type": "string",
|
|
6198
|
+
"id": 2
|
|
6199
|
+
},
|
|
6200
|
+
"messageId": {
|
|
6201
|
+
"type": "common.MessageID",
|
|
6202
|
+
"id": 3
|
|
6203
|
+
},
|
|
6204
|
+
"timeTick": {
|
|
6205
|
+
"type": "uint64",
|
|
6206
|
+
"id": 4
|
|
6207
|
+
}
|
|
6208
|
+
}
|
|
6209
|
+
},
|
|
6210
|
+
"HighlightData": {
|
|
6211
|
+
"fields": {
|
|
6212
|
+
"fragments": {
|
|
6213
|
+
"rule": "repeated",
|
|
6214
|
+
"type": "string",
|
|
6215
|
+
"id": 1
|
|
6216
|
+
}
|
|
6217
|
+
}
|
|
6218
|
+
},
|
|
6219
|
+
"HighlightResult": {
|
|
6220
|
+
"fields": {
|
|
6221
|
+
"fieldName": {
|
|
6222
|
+
"type": "string",
|
|
6223
|
+
"id": 1
|
|
6224
|
+
},
|
|
6225
|
+
"datas": {
|
|
6226
|
+
"rule": "repeated",
|
|
6227
|
+
"type": "HighlightData",
|
|
6228
|
+
"id": 2
|
|
6229
|
+
}
|
|
6230
|
+
}
|
|
6231
|
+
},
|
|
6232
|
+
"HighlightType": {
|
|
6233
|
+
"values": {
|
|
6234
|
+
"Lexical": 0,
|
|
6235
|
+
"Semantic": 1
|
|
6236
|
+
}
|
|
6237
|
+
},
|
|
6238
|
+
"Highlighter": {
|
|
6239
|
+
"fields": {
|
|
6240
|
+
"type": {
|
|
6241
|
+
"type": "HighlightType",
|
|
6242
|
+
"id": 1
|
|
6243
|
+
},
|
|
6244
|
+
"params": {
|
|
6245
|
+
"rule": "repeated",
|
|
6246
|
+
"type": "KeyValuePair",
|
|
6247
|
+
"id": 2
|
|
6248
|
+
}
|
|
6249
|
+
}
|
|
5537
6250
|
}
|
|
5538
6251
|
}
|
|
5539
6252
|
},
|
|
@@ -5626,6 +6339,7 @@ exports.default = {
|
|
|
5626
6339
|
"JSON": 23,
|
|
5627
6340
|
"Geometry": 24,
|
|
5628
6341
|
"Text": 25,
|
|
6342
|
+
"Timestamptz": 26,
|
|
5629
6343
|
"BinaryVector": 100,
|
|
5630
6344
|
"FloatVector": 101,
|
|
5631
6345
|
"Float16Vector": 102,
|
|
@@ -5633,7 +6347,8 @@ exports.default = {
|
|
|
5633
6347
|
"SparseFloatVector": 104,
|
|
5634
6348
|
"Int8Vector": 105,
|
|
5635
6349
|
"ArrayOfVector": 106,
|
|
5636
|
-
"ArrayOfStruct": 200
|
|
6350
|
+
"ArrayOfStruct": 200,
|
|
6351
|
+
"Struct": 201
|
|
5637
6352
|
}
|
|
5638
6353
|
},
|
|
5639
6354
|
"FunctionType": {
|
|
@@ -5943,6 +6658,24 @@ exports.default = {
|
|
|
5943
6658
|
}
|
|
5944
6659
|
}
|
|
5945
6660
|
},
|
|
6661
|
+
"TimestamptzArray": {
|
|
6662
|
+
"fields": {
|
|
6663
|
+
"data": {
|
|
6664
|
+
"rule": "repeated",
|
|
6665
|
+
"type": "int64",
|
|
6666
|
+
"id": 1
|
|
6667
|
+
}
|
|
6668
|
+
}
|
|
6669
|
+
},
|
|
6670
|
+
"GeometryWktArray": {
|
|
6671
|
+
"fields": {
|
|
6672
|
+
"data": {
|
|
6673
|
+
"rule": "repeated",
|
|
6674
|
+
"type": "string",
|
|
6675
|
+
"id": 1
|
|
6676
|
+
}
|
|
6677
|
+
}
|
|
6678
|
+
},
|
|
5946
6679
|
"ValueField": {
|
|
5947
6680
|
"oneofs": {
|
|
5948
6681
|
"data": {
|
|
@@ -5953,7 +6686,8 @@ exports.default = {
|
|
|
5953
6686
|
"floatData",
|
|
5954
6687
|
"doubleData",
|
|
5955
6688
|
"stringData",
|
|
5956
|
-
"bytesData"
|
|
6689
|
+
"bytesData",
|
|
6690
|
+
"timestamptzData"
|
|
5957
6691
|
]
|
|
5958
6692
|
}
|
|
5959
6693
|
},
|
|
@@ -5985,6 +6719,10 @@ exports.default = {
|
|
|
5985
6719
|
"bytesData": {
|
|
5986
6720
|
"type": "bytes",
|
|
5987
6721
|
"id": 7
|
|
6722
|
+
},
|
|
6723
|
+
"timestamptzData": {
|
|
6724
|
+
"type": "int64",
|
|
6725
|
+
"id": 8
|
|
5988
6726
|
}
|
|
5989
6727
|
}
|
|
5990
6728
|
},
|
|
@@ -6001,7 +6739,9 @@ exports.default = {
|
|
|
6001
6739
|
"bytesData",
|
|
6002
6740
|
"arrayData",
|
|
6003
6741
|
"jsonData",
|
|
6004
|
-
"geometryData"
|
|
6742
|
+
"geometryData",
|
|
6743
|
+
"timestamptzData",
|
|
6744
|
+
"geometryWktData"
|
|
6005
6745
|
]
|
|
6006
6746
|
}
|
|
6007
6747
|
},
|
|
@@ -6045,6 +6785,14 @@ exports.default = {
|
|
|
6045
6785
|
"geometryData": {
|
|
6046
6786
|
"type": "GeometryArray",
|
|
6047
6787
|
"id": 10
|
|
6788
|
+
},
|
|
6789
|
+
"timestamptzData": {
|
|
6790
|
+
"type": "TimestamptzArray",
|
|
6791
|
+
"id": 11
|
|
6792
|
+
},
|
|
6793
|
+
"geometryWktData": {
|
|
6794
|
+
"type": "GeometryWktArray",
|
|
6795
|
+
"id": 12
|
|
6048
6796
|
}
|
|
6049
6797
|
}
|
|
6050
6798
|
},
|
|
@@ -6283,6 +7031,11 @@ exports.default = {
|
|
|
6283
7031
|
"primaryFieldName": {
|
|
6284
7032
|
"type": "string",
|
|
6285
7033
|
"id": 13
|
|
7034
|
+
},
|
|
7035
|
+
"highlightResults": {
|
|
7036
|
+
"rule": "repeated",
|
|
7037
|
+
"type": "common.HighlightResult",
|
|
7038
|
+
"id": 14
|
|
6286
7039
|
}
|
|
6287
7040
|
}
|
|
6288
7041
|
},
|
|
@@ -6517,6 +7270,13 @@ exports.default = {
|
|
|
6517
7270
|
}
|
|
6518
7271
|
},
|
|
6519
7272
|
"InsertRequest": {
|
|
7273
|
+
"oneofs": {
|
|
7274
|
+
"_namespace": {
|
|
7275
|
+
"oneof": [
|
|
7276
|
+
"namespace"
|
|
7277
|
+
]
|
|
7278
|
+
}
|
|
7279
|
+
},
|
|
6520
7280
|
"fields": {
|
|
6521
7281
|
"base": {
|
|
6522
7282
|
"type": "common.MsgBase",
|
|
@@ -6581,6 +7341,13 @@ exports.default = {
|
|
|
6581
7341
|
"version": {
|
|
6582
7342
|
"type": "InsertDataVersion",
|
|
6583
7343
|
"id": 15
|
|
7344
|
+
},
|
|
7345
|
+
"namespace": {
|
|
7346
|
+
"type": "string",
|
|
7347
|
+
"id": 16,
|
|
7348
|
+
"options": {
|
|
7349
|
+
"proto3_optional": true
|
|
7350
|
+
}
|
|
6584
7351
|
}
|
|
6585
7352
|
}
|
|
6586
7353
|
},
|
|
@@ -6690,11 +7457,17 @@ exports.default = {
|
|
|
6690
7457
|
},
|
|
6691
7458
|
"partitionID": {
|
|
6692
7459
|
"type": "int64",
|
|
6693
|
-
"id": 7
|
|
7460
|
+
"id": 7,
|
|
7461
|
+
"options": {
|
|
7462
|
+
"deprecated": true
|
|
7463
|
+
}
|
|
6694
7464
|
},
|
|
6695
7465
|
"schema": {
|
|
6696
7466
|
"type": "bytes",
|
|
6697
|
-
"id": 8
|
|
7467
|
+
"id": 8,
|
|
7468
|
+
"options": {
|
|
7469
|
+
"deprecated": true
|
|
7470
|
+
}
|
|
6698
7471
|
},
|
|
6699
7472
|
"virtualChannelNames": {
|
|
6700
7473
|
"rule": "repeated",
|
|
@@ -6710,6 +7483,15 @@ exports.default = {
|
|
|
6710
7483
|
"rule": "repeated",
|
|
6711
7484
|
"type": "int64",
|
|
6712
7485
|
"id": 11
|
|
7486
|
+
},
|
|
7487
|
+
"partitionNames": {
|
|
7488
|
+
"rule": "repeated",
|
|
7489
|
+
"type": "string",
|
|
7490
|
+
"id": 12
|
|
7491
|
+
},
|
|
7492
|
+
"collectionSchema": {
|
|
7493
|
+
"type": "schema.CollectionSchema",
|
|
7494
|
+
"id": 13
|
|
6713
7495
|
}
|
|
6714
7496
|
}
|
|
6715
7497
|
},
|