@Test
public void testCompileAndResolve() throws Exception {
//frontend
Schema udfSchema = Utils.getSchemaFromString("a:int");
boolean isAppendable = false;
GenContext context = GenContext.UDF;
SchemaTupleFrontend.registerToGenerateIfPossible(udfSchema, isAppendable, context);
udfSchema = Utils.getSchemaFromString("a:long");
isAppendable = true;
SchemaTupleFrontend.registerToGenerateIfPossible(udfSchema, isAppendable, context);