milvus/core/include/collection_c.h
bigsheeper b583f990e4 Fix index building
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2020-09-21 18:16:06 +08:00

18 lines
298 B
C

#ifdef __cplusplus
extern "C" {
#endif
typedef void* CCollection;
CCollection
NewCollection(const char* collection_name, const char* schema_conf);
void
DeleteCollection(CCollection collection);
void
UpdateIndexes(CCollection c_collection, const char *index_string);
#ifdef __cplusplus
}
#endif