Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: milvus-io/milvus-proto
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dd8dfe40c3536a44673ca4d28537d67d956cbe44
Choose a base ref
..
head repository: milvus-io/milvus-proto
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3530dc21f4cc5e70025b352b6b6b473dceca6df4
Choose a head ref
Showing with 3 additions and 1 deletion.
  1. +1 −0 go-api/schemapb/schema.pb.go
  2. +1 −1 proto/milvus.proto
  3. +1 −0 proto/schema.proto
1 change: 1 addition & 0 deletions go-api/schemapb/schema.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/milvus.proto
Original file line number Diff line number Diff line change
@@ -1204,7 +1204,7 @@ message ImportRequest {
repeated string files = 5; // file paths to be imported
repeated common.KeyValuePair options = 6; // import options, bucket, etc.
string db_name = 7; // target database
bytes clustering_info = 8; // serialized `schema.ClusteringInfo`
bytes clustering_info = 8; // serialized `schema.ClusteringInfo`
}

message ImportResponse {
1 change: 1 addition & 0 deletions proto/schema.proto
Original file line number Diff line number Diff line change
@@ -176,6 +176,7 @@ message ScalarClusteringInfo {
string field = 1;
}

// clustering distribution info of a certain data unit, it can be segment, partition, etc.
message ClusteringInfo {
repeated VectorClusteringInfo vector_clustering_infos = 1;
repeated ScalarClusteringInfo scalar_clustering_infos = 2;