}
private void compareToUDFDayOfMonthLong(long t, int y) {
UDFDayOfMonth udf = new UDFDayOfMonth();
TimestampWritable tsw = toTimestampWritable(t);
IntWritable res = udf.evaluate(tsw);
Assert.assertEquals(res.get(), y);
}
private void verifyUDFDayOfMonth(VectorizedRowBatch batch, TestType testType) {
VectorExpression udf = null;