From 9b52df66d577444e177349848f4e3e87acea2a86 Mon Sep 17 00:00:00 2001 From: tj0 Date: Tue, 14 Sep 2021 18:51:19 +0800 Subject: [PATCH] Fix UNINIT_CTOR --- src/sql/engine/dml/ob_table_update.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sql/engine/dml/ob_table_update.h b/src/sql/engine/dml/ob_table_update.h index aa3a6d78b8..58ad37a5e2 100644 --- a/src/sql/engine/dml/ob_table_update.h +++ b/src/sql/engine/dml/ob_table_update.h @@ -52,7 +52,9 @@ public: part_key_(), part_row_cnt_(0), part_infos_(), - cur_part_idx_(0) + cur_part_idx_(0), + new_row_projector_(NULL), + new_row_projector_size_(0) {} ~ObTableUpdateCtx() {} -- GitLab