public void testVectorUDFMinuteString() {
testVectorUDFMinute(TestType.STRING_LONG);
}
private void compareToUDFMonthLong(long t, int y) {
UDFMonth udf = new UDFMonth();
TimestampWritable tsw = toTimestampWritable(t);
IntWritable res = udf.evaluate(tsw);
Assert.assertEquals(res.get(), y);
}