mirror of https://github.com/milvus-io/milvus.git
update mysql meta test
Former-commit-id: 5f6d059f81b16ae34354324c16f342c3125c8b92pull/191/head
parent
4127debdae
commit
c811c3a781
|
@ -53,7 +53,7 @@ class MySQLMetaImpl : public Meta {
|
||||||
|
|
||||||
Status UpdateTableIndex(const std::string &table_id, const TableIndex& index) override;
|
Status UpdateTableIndex(const std::string &table_id, const TableIndex& index) override;
|
||||||
|
|
||||||
Status UpdateTableFlag(const std::string &table_id, int64_t flag);
|
Status UpdateTableFlag(const std::string &table_id, int64_t flag) override;
|
||||||
|
|
||||||
Status DescribeTableIndex(const std::string &table_id, TableIndex& index) override;
|
Status DescribeTableIndex(const std::string &table_id, TableIndex& index) override;
|
||||||
|
|
||||||
|
|
|
@ -351,7 +351,7 @@ TEST_F(MySqlMetaTest, TABLE_FILES_TEST) {
|
||||||
status = impl_->DeleteTable(table_id);
|
status = impl_->DeleteTable(table_id);
|
||||||
ASSERT_TRUE(status.ok());
|
ASSERT_TRUE(status.ok());
|
||||||
|
|
||||||
status = impl_->CleanUpFilesWithTTL(1UL);
|
status = impl_->CleanUpFilesWithTTL(0UL);
|
||||||
ASSERT_TRUE(status.ok());
|
ASSERT_TRUE(status.ok());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue