public void testVectorUDFHourString() {
testVectorUDFHour(TestType.STRING_LONG);
}
private void compareToUDFMinuteLong(long t, int y) {
UDFMinute udf = new UDFMinute();
TimestampWritable tsw = toTimestampWritable(t);
IntWritable res = udf.evaluate(tsw);
Assert.assertEquals(res.get(), y);
}