[FEAT MERGE] 4.x Dup Table

Co-authored-by: Minionyh <minions.yh@gmail.com>
Co-authored-by: BinChenn <binchenn.bc@gmail.com>
Co-authored-by: ChangerR <dingjinchengyx@163.com>
This commit is contained in:
KyrielightWei
2023-05-11 10:07:20 +00:00
committed by ob-robot
parent 0509c5f9fe
commit aaab6560a1
278 changed files with 20924 additions and 2857 deletions

View File

@ -1945,6 +1945,15 @@ int ObLogTableScan::get_phy_location_type(ObTableLocationType &location_type)
return ret;
}
bool ObLogTableScan::is_duplicate_table()
{
bool bret = false;
if (NULL != table_partition_info_) {
bret = table_partition_info_->get_phy_tbl_location_info().is_duplicate_table_not_in_dml();
}
return bret;
}
int ObLogTableScan::extract_bnlj_param_idxs(ObIArray<int64_t> &bnlj_params)
{
int ret = OB_SUCCESS;