[bugfix](restore) add partition id into convert_rowset_ids() (#24834)

This commit is contained in:
DeadlineFen
2023-09-25 20:07:24 +08:00
committed by GitHub
parent 9dff620471
commit 6502da8917
8 changed files with 14 additions and 7 deletions

View File

@ -323,7 +323,7 @@ Status EngineCloneTask::_make_and_download_snapshots(DataDir& data_dir,
// change all rowset ids because they maybe its id same with local rowset
status = SnapshotManager::instance()->convert_rowset_ids(
local_data_path, _clone_req.tablet_id, _clone_req.replica_id,
_clone_req.schema_hash);
_clone_req.partition_id, _clone_req.schema_hash);
} else {
LOG_WARNING("failed to download snapshot from remote BE")
.tag("url", remote_url_prefix)