impl fixed route mode for temporary tables

This commit is contained in:
bf0
2021-08-24 19:25:17 +08:00
committed by wangzelin.wzl
parent 67f64412ad
commit dde5e02569
10 changed files with 93 additions and 4 deletions

View File

@ -375,6 +375,11 @@ int ObCodeGeneratorImpl::set_other_properties(const ObLogPlan& log_plan, ObPhysi
if (table_schema->is_oracle_sess_tmp_table()) {
phy_plan.set_contain_oracle_session_level_temporary_table();
}
LOG_DEBUG("plan contain temporary table",
"trx level",
table_schema->is_oracle_trx_tmp_table(),
"session level",
table_schema->is_oracle_sess_tmp_table());
}
}
}