Skip to content

Commit

Permalink
PARQUET-34: Fix FilterApi signature
Browse files Browse the repository at this point in the history
  • Loading branch information
clairemcginty committed Dec 5, 2024
1 parent dc9cb19 commit a0c6815
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public static <T extends Comparable<T>, P extends SingleColumnFilterPredicate<T>
return Contains.of(pred);
}

public static Size size(Column<?> column, Size.Operator operator, int value) {
public static Size size(Column<?> column, Size.Operator operator, long value) {
return new Size(column, operator, value);
}

Expand Down

0 comments on commit a0c6815

Please sign in to comment.