deardeng commented on code in PR #26428: URL: https://github.com/apache/doris/pull/26428#discussion_r1383006786
########## be/src/olap/task/engine_publish_version_task.cpp: ########## @@ -235,7 +236,19 @@ Status EnginePublishVersionTask::finish() { } else { // check if the version exist, if not exist, then set publish failed if (_error_tablet_ids->find(tablet_id) == _error_tablet_ids->end()) { - if (tablet->check_version_exist(version)) { + bool exist_version = tablet->check_version_exist(version); + bool is_converting = false; + if (!exist_version && tablet->tablet_state() == TabletState::TABLET_NOTREADY) { + bool is_mow = tablet->keys_type() == KeysType::UNIQUE_KEYS && Review Comment: add some log? -- 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