@Test
public void testIsNotNullExpr() {
// has nulls, not repeating
VectorizedRowBatch batch = getBatchThreeBooleanCols();
IsNotNull expr = new IsNotNull(0, 2);
LongColumnVector outCol = (LongColumnVector) batch.cols[2];
expr.evaluate(batch);
Assert.assertEquals(1, outCol.vector[0]);
Assert.assertEquals(0, outCol.vector[4]);
Assert.assertTrue(outCol.noNulls);
Assert.assertFalse(outCol.isRepeating);