Describe does not produce correct schema for generate with UDF
--------------------------------------------------------------
Key: PIG-363
URL: https://issues.apache.org/jira/browse/PIG-363
Project: Pig
Issue Type: Bug
Affects Versions: types_branch
Reporter: Olga Natkovich
Priority: Critical
Fix For: types_branch
B = foreach A generate string.CONCATSEP(' ', $0, 'foo');
describe B;
{chararray}
UDF has the following outputSchema function:
public Schema outputSchema(Schema input) {
String name = "concatsep_";
if (input.getAliases().size() > 0)
name += input.getAliases().iterator().next() + "_";
return new Schema(new Schema.FieldSchema(name +
getNextSchemaId(), DataType.CHARARRAY));
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.