return executeAggregation("collect_set", dataType, data);
}
@Test
public void testReturnType() throws Exception {
FunctionIdent fi = new FunctionIdent("collect_set", ImmutableList.<DataType>of(DataTypes.INTEGER));
assertEquals(DataTypes.INTEGER, functions.get(fi).info().returnType());
}