fix some test case
This commit is contained in:
@ -88,6 +88,12 @@ int ObTxTableGuard::init(ObTxTable *tx_table)
|
||||
return OB_SUCCESS;
|
||||
}
|
||||
|
||||
int ObReadInfoStruct::init_compat_version()
|
||||
{
|
||||
compat_version_ = READ_INFO_VERSION_V1;
|
||||
return OB_SUCCESS;
|
||||
}
|
||||
|
||||
} // end storage
|
||||
|
||||
namespace memtable
|
||||
@ -188,10 +194,10 @@ public:
|
||||
// iter_param_.rowkey_cnt_ = rowkey_cnt_;
|
||||
iter_param_.tablet_id_ = tablet_id_;
|
||||
iter_param_.table_id_ = tablet_id_.id();
|
||||
read_info_.init(allocator_, 16000, rowkey_cnt_, false, columns_, nullptr/*storage_cols_index*/);
|
||||
int ret = read_info_.init(allocator_, 16000, rowkey_cnt_, false, columns_, nullptr/*storage_cols_index*/);
|
||||
iter_param_.read_info_ = &read_info_;
|
||||
|
||||
return OB_SUCCESS;
|
||||
return ret;
|
||||
}
|
||||
|
||||
void prepare_schema(share::schema::ObTableSchema &table_schema)
|
||||
|
Reference in New Issue
Block a user