replace ts related to ddl with scn.

This commit is contained in:
obdev
2022-11-28 02:21:13 +00:00
committed by ob-robot
parent bbec6aff49
commit 8a4d14122f
539 changed files with 17685 additions and 173434 deletions

View File

@ -388,7 +388,9 @@ int ObHashJoinOp::inner_open()
{
int ret = OB_SUCCESS;
ObSQLSessionInfo *session = NULL;
if ((OB_UNLIKELY(MY_SPEC.all_join_keys_.count() <= 0
if (OB_FAIL(set_shared_info())) {
LOG_WARN("failed to set shared info", K(ret));
} else if ((OB_UNLIKELY(MY_SPEC.all_join_keys_.count() <= 0
|| MY_SPEC.all_join_keys_.count() != MY_SPEC.all_hash_funcs_.count()
|| OB_ISNULL(left_)))) {
ret = OB_ERR_UNEXPECTED;
@ -402,8 +404,6 @@ int ObHashJoinOp::inner_open()
LOG_WARN("fail to init base join ctx", K(ret));
} else if (OB_FAIL(hash_table_.init(*alloc_))) {
LOG_WARN("fail to init hash table", K(ret));
} else if (OB_FAIL(set_shared_info())) {
LOG_WARN("failed to set shared info", K(ret));
} else {
init_system_parameters();
tenant_id_ = session->get_effective_tenant_id();