Consider the below relation
test = LOAD 'input' USING PigStorage(',') as (a:chararray, b:chararray);
Is there a way to achieve the following
if (b == 1) {
a = 'abc';
else if (b == 2) {
a = 'xyz';
else
// retain whatever is there in the column 'a'