For a given IntColumn, only the isIn(int...) method produces the expected results. The isIn(Collection) method inherited from NumericColumn matches actually contained numbers only when they are entered as Doubles into the query collection.
I think this is due to NumericColumn.isIn(Collection) using Collection.contains for matching against Double-converted content cells. I might even produce a fix.
For a given IntColumn, only the
isIn(int...)
method produces the expected results. TheisIn(Collection)
method inherited from NumericColumn matches actually contained numbers only when they are entered as Doubles into the query collection.To test:
I think this is due to
NumericColumn.isIn(Collection)
usingCollection.contains
for matching against Double-converted content cells. I might even produce a fix.