Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jadami10 committed Mar 28, 2023
1 parent bacf64e commit ffd0f02
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,8 @@ private static Expression rewriteRangeExpression(Expression range, FilterKind ki
// Literal value is less than the bounds of INT. > and >= expressions will always be true because an
// INT column will always have a value greater than or equal to Integer.MIN_VALUE. < and <= expressions
// will always be false, because an INT column will never have values less than Integer.MIN_VALUE.
return getExpressionFromBoolean(kind == FilterKind.GREATER_THAN || kind == FilterKind.GREATER_THAN_OR_EQUAL);
return getExpressionFromBoolean(
kind == FilterKind.GREATER_THAN || kind == FilterKind.GREATER_THAN_OR_EQUAL);
} else {
// Long literal value falls within the bounds of INT column, server will successfully convert the literal
// value when needed.
Expand Down

0 comments on commit ffd0f02

Please sign in to comment.