From 2a46c06f920fc0bfc198a16c2c16647751759466 Mon Sep 17 00:00:00 2001 From: 924060929 Date: Fri, 15 Nov 2024 23:24:29 +0800 Subject: [PATCH] fix --- be/src/vec/exprs/vruntimefilter_wrapper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/src/vec/exprs/vruntimefilter_wrapper.h b/be/src/vec/exprs/vruntimefilter_wrapper.h index a4bd6c18994457..060f33e01a1863 100644 --- a/be/src/vec/exprs/vruntimefilter_wrapper.h +++ b/be/src/vec/exprs/vruntimefilter_wrapper.h @@ -77,8 +77,8 @@ class VRuntimeFilterWrapper final : public VExpr { template static void judge_selectivity(double ignore_threshold, int64_t filter_rows, int64_t input_rows, T& always_true) { - always_true = static_cast(filter_rows) / static_cast(input_rows) - < ignore_threshold; + always_true = static_cast(filter_rows) / static_cast(input_rows) < + ignore_threshold; } bool is_rf_wrapper() const override { return true; }