Remedy In's lack of fluency.

This commit is contained in:
Michael Bayne
2016-04-03 11:15:33 -07:00
parent 97ccb9ef06
commit bf7400af5e
@@ -8,14 +8,14 @@ import java.util.Collection;
import com.google.common.collect.Iterables; import com.google.common.collect.Iterables;
import com.samskivert.depot.PersistentRecord; import com.samskivert.depot.PersistentRecord;
import com.samskivert.depot.expression.FluentExp;
import com.samskivert.depot.expression.SQLExpression; import com.samskivert.depot.expression.SQLExpression;
import com.samskivert.depot.impl.FragmentVisitor; import com.samskivert.depot.impl.FragmentVisitor;
/** /**
* The SQL 'in (...)' operator. * The SQL 'in (...)' operator.
*/ */
public class In public class In extends FluentExp<Boolean>
implements SQLExpression<Boolean>
{ {
/** The maximum number of keys allowed in an IN() clause. */ /** The maximum number of keys allowed in an IN() clause. */
public static final int MAX_KEYS = Short.MAX_VALUE; public static final int MAX_KEYS = Short.MAX_VALUE;