You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@pig.apache.org by Lucian Cioranu <lu...@gmail.com> on 2012/09/18 17:27:59 UTC

Schema changed between 0.8 and 0.9

Hi,

The input schema that I used to receive in my UDF using pig 0.8 was
something like:

{chararray,*identifier_name*: (field1: long,field2: double)}

Using pig 0.9 I get
{chararray,field1: long,field2: double}

I need the identifier_name in order to get some properties from the
UDFContext in order to compute the output schema.

Is there a way to get the value from somewhere else?