We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e93401d commit df68a70Copy full SHA for df68a70
client/src/consts/Milvus.tsx
@@ -83,7 +83,7 @@ export const FLOAT_INDEX_CONFIG: indexConfigType = {
83
// search: ['nprobe'],
84
// },
85
FLAT: {
86
- create: ['nlist'],
+ create: [''],
87
search: ['nprobe'],
88
},
89
HNSW: {
client/src/pages/query/Query.tsx
@@ -166,7 +166,9 @@ const Query: FC<{
166
167
const handleDelete = async () => {
168
await CollectionHttp.deleteEntities(collectionName, {
169
- expr: `${primaryKey} in [${selectedData.map(v => v.id).join(',')}]`,
+ expr: `${primaryKey} in [${selectedData
170
+ .map(v => v[primaryKey])
171
+ .join(',')}]`,
172
});
173
handleCloseDialog();
174
openSnackBar(successTrans('delete', { name: collectionTrans('entites') }));
0 commit comments