}
@Test
public void testLongScalarModuloLongColNoNulls() {
VectorizedRowBatch batch = getBatchSingleLongVectorPositiveNonZero();
LongScalarModuloLongColumn expr = new LongScalarModuloLongColumn(100, 0, 1);
expr.evaluate(batch);
// verify
for (int i = 0; i < VectorizedRowBatch.DEFAULT_SIZE; i++) {
Assert.assertEquals(100 % ((i + 1) * 37), ((LongColumnVector) batch.cols[1]).vector[i]);
}