Skip to content

Commit

Permalink
[chore](cloud) Fix code style (#33467)
Browse files Browse the repository at this point in the history
Fix code style
  • Loading branch information
gavinchou authored Apr 10, 2024
1 parent c11cdfe commit e149591
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloud/src/meta-service/meta_service_partition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -603,8 +603,8 @@ void MetaServiceImpl::drop_partition(::google::protobuf::RpcController* controll
if (request->has_db_id()) {
bool need_update_table_version = false;
for (auto part_id : request->partition_ids()) {
std::string partition_ver_key = partition_version_key({
instance_id, request->db_id(), request->table_id(), part_id});
std::string partition_ver_key = partition_version_key(
{instance_id, request->db_id(), request->table_id(), part_id});
std::string ver_val_str;
err = txn->get(partition_ver_key, &ver_val_str);
if (err != TxnErrorCode::TXN_OK && err != TxnErrorCode::TXN_KEY_NOT_FOUND) {
Expand Down

0 comments on commit e149591

Please sign in to comment.