From b1652749058ed7e92fbdc3ac34b4767365b80db4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sun, 27 Oct 2024 19:05:09 +0100 Subject: [PATCH] Formatting --- src/rfuns.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/rfuns.cpp b/src/rfuns.cpp index cd2fc7aed..61371f3f3 100644 --- a/src/rfuns.cpp +++ b/src/rfuns.cpp @@ -796,7 +796,6 @@ void InExecute(DataChunk &args, ExpressionState &state, Vector &result) { return false; }(); - auto is_in_y = [&](LHS_TYPE left) { // special case when there are no NAs in y if (!na_in_y) { @@ -823,7 +822,8 @@ void InExecute(DataChunk &args, ExpressionState &state, Vector &result) { } } else if (ValidityMask::NoneValid(y_validity_entry)) { // nothing to do, because inside is_in_y() we know left is valid - for (; y_base_idx < y_next; y_base_idx++) {} + for (; y_base_idx < y_next; y_base_idx++) { + } } else { idx_t y_start = y_base_idx; @@ -835,7 +835,6 @@ void InExecute(DataChunk &args, ExpressionState &state, Vector &result) { } } } - } return false; }; @@ -907,7 +906,6 @@ void InExecute(DataChunk &args, ExpressionState &state, Vector &result) { break; } } - } #define IN_VARIANT(__LHS__, __RHS__) ScalarFunction( \