From 7447ac71b59bfbf38f5216d07867f557064332e1 Mon Sep 17 00:00:00 2001 From: Mingyu Chen Date: Thu, 12 Oct 2023 10:34:36 +0800 Subject: [PATCH] [minor](format) fix BE code format (#25328) --- be/src/vec/sink/writer/vtablet_writer.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/be/src/vec/sink/writer/vtablet_writer.cpp b/be/src/vec/sink/writer/vtablet_writer.cpp index 0b39065721..c0676a5670 100644 --- a/be/src/vec/sink/writer/vtablet_writer.cpp +++ b/be/src/vec/sink/writer/vtablet_writer.cpp @@ -55,6 +55,7 @@ #endif // IWYU pragma: no_include +#include "bvar/bvar.h" #include "common/compiler_util.h" // IWYU pragma: keep #include "common/logging.h" #include "common/object_pool.h" @@ -92,7 +93,6 @@ #include "vec/exprs/vexpr.h" #include "vec/sink/vtablet_block_convertor.h" #include "vec/sink/vtablet_finder.h" -#include "bvar/bvar.h" namespace doris { class TExpr; @@ -100,9 +100,11 @@ class TExpr; namespace vectorized { bvar::Adder g_sink_write_bytes; -bvar::PerSecond> g_sink_write_bytes_per_second("sink_throughput_byte", &g_sink_write_bytes, 60); +bvar::PerSecond> g_sink_write_bytes_per_second("sink_throughput_byte", + &g_sink_write_bytes, 60); bvar::Adder g_sink_write_rows; -bvar::PerSecond> g_sink_write_rows_per_second("sink_throughput_row", &g_sink_write_rows, 60); +bvar::PerSecond> g_sink_write_rows_per_second("sink_throughput_row", + &g_sink_write_rows, 60); Status IndexChannel::init(RuntimeState* state, const std::vector& tablets) { SCOPED_CONSUME_MEM_TRACKER(_index_channel_tracker.get());