From ffce739a9f3a48cec9b3b543eff4f59d91a79d10 Mon Sep 17 00:00:00 2001 From: obdev Date: Wed, 18 Sep 2024 06:01:31 +0000 Subject: [PATCH] Fix core when print skip_index_datum --- src/storage/access/ob_aggregate_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/access/ob_aggregate_base.h b/src/storage/access/ob_aggregate_base.h index c6e0657d6..4ef265768 100644 --- a/src/storage/access/ob_aggregate_base.h +++ b/src/storage/access/ob_aggregate_base.h @@ -79,7 +79,7 @@ public: OB_INLINE bool is_max_agg() const { return PD_MAX == agg_type_; } OB_INLINE ObBitmap &get_bitmap() { return *bitmap_; }; VIRTUAL_TO_STRING_KV(K_(agg_type), K_(is_inited), KPC_(bitmap), KP_(agg_row_reader), - K_(result_datum), K_(skip_index_datum), K_(is_assigned_to_group_by_processor)); + K_(result_datum), K_(is_assigned_to_group_by_processor)); protected: ObBitmap *bitmap_; blocksstable::ObAggRowReader *agg_row_reader_;