Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
yangzq50 committed May 8, 2024
1 parent e743ce2 commit cc11c3e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,9 @@ TEST_F(OptimizeKnnTest, test_secondary_index_optimize) {
}
auto data_block = DataBlock::Make();
data_block->Init(column_vectors);

auto status = txn->Append(*db_name, *table_name, data_block);
auto [table_entry, status] = txn->GetTableByName(*db_name, *table_name);
ASSERT_TRUE(status.ok());
status = txn->Append(table_entry, data_block);
ASSERT_TRUE(status.ok());
txn_mgr->CommitTxn(txn);
};
Expand Down

0 comments on commit cc11c3e

Please sign in to comment.