From b886abca51732f4735a3ef111af9e09fb587df2f Mon Sep 17 00:00:00 2001 From: Hooper9973 Date: Fri, 8 Mar 2024 11:21:26 +0000 Subject: [PATCH] [BUG FIX] fix const decoder --- src/storage/blocksstable/encoding/ob_const_decoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/blocksstable/encoding/ob_const_decoder.cpp b/src/storage/blocksstable/encoding/ob_const_decoder.cpp index 0525d32cf..8abc24223 100644 --- a/src/storage/blocksstable/encoding/ob_const_decoder.cpp +++ b/src/storage/blocksstable/encoding/ob_const_decoder.cpp @@ -39,7 +39,7 @@ int ObConstDecoder::decode_without_dict( int64_t ref = meta_header_->const_ref_; if (0 == ref) { const int64_t len = ctx.col_header_->length_ - sizeof(*meta_header_); - const ObObjType obj_type = ctx.obj_meta_.get_type(); + const ObObjType obj_type = ctx.col_header_->get_store_obj_type(); const ObObjTypeClass tc = ob_obj_type_class(obj_type); uint64_t integer_mask; if (ObIntTC == tc) {