public void testVectorUDFMonthString() {
testVectorUDFMonth(TestType.STRING_LONG);
}
private void compareToUDFSecondLong(long t, int y) {
UDFSecond udf = new UDFSecond();
TimestampWritable tsw = toTimestampWritable(t);
IntWritable res = udf.evaluate(tsw);
Assert.assertEquals(res.get(), y);
}