Do not report ERROR when sample rate equals 100
This commit is contained in:
@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user