Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Oct 27, 2024
1 parent 134aae5 commit b165274
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/rfuns.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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;

Expand All @@ -835,7 +835,6 @@ void InExecute(DataChunk &args, ExpressionState &state, Vector &result) {
}
}
}

}
return false;
};
Expand Down Expand Up @@ -907,7 +906,6 @@ void InExecute(DataChunk &args, ExpressionState &state, Vector &result) {
break;
}
}

}

#define IN_VARIANT(__LHS__, __RHS__) ScalarFunction( \
Expand Down

0 comments on commit b165274

Please sign in to comment.