From f1fbce0c75584bdcf2c97511c47f0d0f262b6edc Mon Sep 17 00:00:00 2001 From: morningman Date: Sun, 21 Jun 2020 11:14:33 +0800 Subject: [PATCH] [Bug] Fix bug that BE crash when doing some queries --- be/src/runtime/data_stream_recvr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/runtime/data_stream_recvr.cc b/be/src/runtime/data_stream_recvr.cc index 8a4b9d3d7291ee..b2efb0c55c7c27 100644 --- a/be/src/runtime/data_stream_recvr.cc +++ b/be/src/runtime/data_stream_recvr.cc @@ -361,7 +361,7 @@ DataStreamRecvr::DataStreamRecvr( _is_merging(is_merging), _num_buffered_bytes(0), _sub_plan_query_statistics_recvr(sub_plan_query_statistics_recvr) { - _profile.reset(new RuntimeProfile(nullptr, "DataStreamRecvr")); + _profile.reset(new RuntimeProfile("DataStreamRecvr")); profile->add_child(_profile.get(), true, nullptr); // TODO: Now the parent tracker may cause problem when we need spill to disk, so we