Do not report ERROR when sample rate equals 100

This commit is contained in:
ZenoWang
2024-02-06 14:49:31 +00:00
committed by ob-robot
parent 1f1d5c08ae
commit c8ef409bf3
3710 changed files with 486984 additions and 3083329 deletions

View File

@ -77,11 +77,6 @@ const ObTabletID& ObRelativeTable::get_tablet_id() const
return tablet_id_;
}
const ObTabletHandle* ObRelativeTable::get_tablet_handle() const
{
return tablet_iter_.get_tablet_handle_ptr();
}
int64_t ObRelativeTable::get_schema_version() const
{
return schema_param_->get_schema_version();
@ -620,7 +615,7 @@ int ObRelativeTable::set_index_value(
{
int ret = OB_SUCCESS;
int32_t idx = -1;
uint64_t id = is_shadow_column(col_desc.col_id_) ?
uint64_t id = col_desc.col_id_ > OB_MIN_SHADOW_COLUMN_ID ?
col_desc.col_id_ - OB_MIN_SHADOW_COLUMN_ID :
col_desc.col_id_;
if (table_row.is_invalid() || !col_map.is_inited() || rowkey_size <= 0) {