[FEAT MERGE] GIS

This commit is contained in:
obdev
2022-12-23 12:08:27 +00:00
committed by ob-robot
parent 38846e73d6
commit 40d215fc5a
519 changed files with 158600 additions and 8396 deletions

View File

@ -754,7 +754,7 @@ int ObIndexBuildTask::wait_data_complement()
state_finished = true;
}
}
if (OB_SUCC(ret) && state_finished) {
if (OB_SUCC(ret) && state_finished && !create_index_arg_.is_spatial_index()) {
bool dummy_equal = false;
if (OB_FAIL(ObDDLChecksumOperator::check_column_checksum(
tenant_id_, execution_id_, object_id_, index_table_id_, task_id_, dummy_equal, root_service_->get_sql_proxy()))) {
@ -783,6 +783,8 @@ int ObIndexBuildTask::check_need_verify_checksum(bool &need_verify)
LOG_WARN("not init", K(ret));
} else if (is_unique_index_) {
need_verify = true;
} else if (create_index_arg_.is_spatial_index()) {
need_verify = false;
} else {
ObSchemaGetterGuard schema_guard;
const ObTableSchema *index_schema = nullptr;