airborne12 commented on code in PR #38306: URL: https://github.com/apache/doris/pull/38306#discussion_r1690681185
########## cloud/src/recycler/recycler.cpp: ########## @@ -1273,17 +1274,26 @@ int InstanceRecycler::delete_rowset_data(const doris::RowsetMetaCloudPB& rs_meta const auto& rowset_id = rs_meta_pb.rowset_id_v2(); int64_t tablet_id = rs_meta_pb.tablet_id(); // process inverted indexes - std::vector<int64_t> index_ids; + std::vector<std::pair<int64_t, std::string>> index_ids; index_ids.reserve(rs_meta_pb.tablet_schema().index_size()); for (auto& i : rs_meta_pb.tablet_schema().index()) { - index_ids.push_back(i.index_id()); + index_ids.push_back(std::make_pair(i.index_id(), i.index_suffix_name())); Review Comment: index_suffix_name is for variant -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org