TangSiyang2001 commented on code in PR #28255: URL: https://github.com/apache/doris/pull/28255#discussion_r1423348748
########## be/src/service/internal_service.cpp: ########## @@ -719,17 +720,45 @@ void PInternalServiceImpl::_get_column_ids_by_tablet_ids( } // check schema consistency, column ids should be the same const auto& columns = tablet->tablet_schema()->columns(); + std::set<int32_t> column_ids; for (const auto& col : columns) { column_ids.insert(col.unique_id()); } filter_set.insert(column_ids); + + if (id_to_column.empty()) { + for (const auto& col : columns) { + id_to_column.insert(std::pair{col.unique_id(), &col}); + } + } else { + for (const auto& col : columns) { + auto it = id_to_column.find(col.unique_id()); + if (it == id_to_column.end() || *(it->second) != col) { + ColumnPB prev_col_pb; + ColumnPB curr_col_pb; + if (it != id_to_column.end()) { + it->second->to_schema_pb(&prev_col_pb); + } + col.to_schema_pb(&curr_col_pb); + std::stringstream ss; + ss << "consistency check failed: index{ " << index_id << " }" + << " got inconsistent schema, prev column: " << prev_col_pb.DebugString() + << " current column: " << curr_col_pb.DebugString(); + LOG(WARNING) << ss.str(); + response->mutable_status()->set_status_code(TStatusCode::ILLEGAL_STATE); + response->mutable_status()->add_error_msgs(ss.str()); + return; + } + } + } } + if (filter_set.size() > 1) { // consistecy check failed std::stringstream ss; ss << "consistency check failed: index{" << index_id << "}" - << "got inconsistent shema"; + << "got inconsistent schema"; LOG(WARNING) << ss.str(); response->mutable_status()->set_status_code(TStatusCode::ILLEGAL_STATE); response->mutable_status()->add_error_msgs(ss.str()); Review Comment: also this if branch could be deleted as above. ########## be/src/service/internal_service.cpp: ########## @@ -719,17 +720,45 @@ void PInternalServiceImpl::_get_column_ids_by_tablet_ids( } // check schema consistency, column ids should be the same const auto& columns = tablet->tablet_schema()->columns(); + std::set<int32_t> column_ids; for (const auto& col : columns) { column_ids.insert(col.unique_id()); } filter_set.insert(column_ids); Review Comment: Shall we delete the logic here, it is a subset of the new added logic. -- 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