update mysql meta test

Former-commit-id: 5f6d059f81b16ae34354324c16f342c3125c8b92
pull/191/head
zhiru 2019-09-10 19:42:18 +08:00
parent 4127debdae
commit c811c3a781
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ class MySQLMetaImpl : public Meta {
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;

View File

@ -351,7 +351,7 @@ TEST_F(MySqlMetaTest, TABLE_FILES_TEST) {
status = impl_->DeleteTable(table_id);
ASSERT_TRUE(status.ok());
status = impl_->CleanUpFilesWithTTL(1UL);
status = impl_->CleanUpFilesWithTTL(0UL);
ASSERT_TRUE(status.ok());
}