Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Nov 15, 2024
1 parent 7dd8c21 commit 2a46c06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/src/vec/exprs/vruntimefilter_wrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ class VRuntimeFilterWrapper final : public VExpr {
template <typename T>
static void judge_selectivity(double ignore_threshold, int64_t filter_rows, int64_t input_rows,
T& always_true) {
always_true = static_cast<double>(filter_rows) / static_cast<double>(input_rows)
< ignore_threshold;
always_true = static_cast<double>(filter_rows) / static_cast<double>(input_rows) <
ignore_threshold;
}

bool is_rf_wrapper() const override { return true; }
Expand Down

0 comments on commit 2a46c06

Please sign in to comment.