diff --git a/jOOQ/src/main/java/org/jooq/BetweenAndStep.java b/jOOQ/src/main/java/org/jooq/BetweenAndStep.java index 1524e4f1fc..61e134f34e 100644 --- a/jOOQ/src/main/java/org/jooq/BetweenAndStep.java +++ b/jOOQ/src/main/java/org/jooq/BetweenAndStep.java @@ -46,10 +46,12 @@ public interface BetweenAndStep { /** * Create a condition to check this field against some bounds */ + @Support Condition and(T value); /** * Create a condition to check this field against some bounds */ + @Support Condition and(Field field); }