fix iterate flag with same sql_seq

This commit is contained in:
obdev
2021-07-12 10:55:11 +08:00
committed by wangzelin.wzl
parent 4c04455403
commit d2f257f846
5 changed files with 92 additions and 2 deletions

View File

@ -833,7 +833,9 @@ int ObMockIteratorBuilder::static_init()
OB_SUCCESS != str_to_dml_.set_refactored(ObString::make_string("DELETE"), T_DML_DELETE) ||
OB_SUCCESS != str_to_dml_.set_refactored(ObString::make_string("T_DML_DELETE"), T_DML_DELETE) ||
OB_SUCCESS != str_to_dml_.set_refactored(ObString::make_string("REPLACE"), T_DML_REPLACE) ||
OB_SUCCESS != str_to_dml_.set_refactored(ObString::make_string("T_DML_REPLACE"), T_DML_REPLACE)) {
OB_SUCCESS != str_to_dml_.set_refactored(ObString::make_string("T_DML_REPLACE"), T_DML_REPLACE) ||
OB_SUCCESS != str_to_dml_.set_refactored(ObString::make_string("LOCK"), T_DML_LOCK) ||
OB_SUCCESS != str_to_dml_.set_refactored(ObString::make_string("T_DML_LOCK"), T_DML_LOCK)) {
ret = OB_INIT_FAIL;
STORAGE_LOG(WARN, "dml hashtable insert failed");
} else {