mirror of https://github.com/milvus-io/milvus.git
refactor(db): delete has_group_file
Former-commit-id: 821b2784c727d30375b7ce5c2bf3e9e9aef16fd8pull/191/head
parent
fbe1278a3a
commit
59fa814af4
|
@ -399,13 +399,6 @@ Status DBMetaImpl::files_to_merge(const std::string& table_id,
|
|||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::has_group_file(const std::string& table_id_,
|
||||
const std::string& file_id_,
|
||||
bool& has_or_not_) {
|
||||
//PXU TODO
|
||||
return Status::OK();
|
||||
}
|
||||
|
||||
Status DBMetaImpl::get_group_file(const std::string& table_id_,
|
||||
const std::string& file_id_,
|
||||
TableFileSchema& group_file_info_) {
|
||||
|
|
|
@ -27,9 +27,6 @@ public:
|
|||
virtual Status DropPartitionsByDates(const std::string& table_id,
|
||||
const DatesT& dates) override;
|
||||
|
||||
virtual Status has_group_file(const std::string& table_id_,
|
||||
const std::string& file_id_,
|
||||
bool& has_or_not_) override;
|
||||
virtual Status get_group_file(const std::string& table_id_,
|
||||
const std::string& file_id_,
|
||||
TableFileSchema& group_file_info_) override;
|
||||
|
|
|
@ -30,9 +30,6 @@ public:
|
|||
virtual Status DropPartitionsByDates(const std::string& table_id,
|
||||
const DatesT& dates) = 0;
|
||||
|
||||
virtual Status has_group_file(const std::string& table_id_,
|
||||
const std::string& file_id_,
|
||||
bool& has_or_not_) = 0;
|
||||
virtual Status get_group_file(const std::string& table_id_,
|
||||
const std::string& file_id_,
|
||||
TableFileSchema& group_file_info_) = 0;
|
||||
|
|
Loading…
Reference in New Issue