Skip to content

Commit

Permalink
Support database name for bulkimport
Browse files Browse the repository at this point in the history
Signed-off-by: yhmo <[email protected]>
  • Loading branch information
yhmo committed Dec 27, 2024
1 parent 6e6035b commit a4f4b59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public class CloudImportRequest extends BaseImportRequest {
private String accessKey;
private String secretKey;
private String clusterId;
private String dbName;
private String collectionName;
private String partitionName;
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
@NoArgsConstructor
public class MilvusImportRequest extends BaseImportRequest {
private static final long serialVersionUID = -1958858397962018740L;
private String dbName;
private String collectionName;
private String partitionName;
private List<List<String>> files;
Expand Down

0 comments on commit a4f4b59

Please sign in to comment.