考虑以下关系
test = LOAD 'input' USING PigStorage(',') as (a:chararray, b:chararray);
有没有办法实现以下
if (b == 1) {
a = 'abc';
else if (b == 2) {
a = 'xyz';
else
// retain whatever is there in the column 'a'
考虑以下关系
test = LOAD 'input' USING PigStorage(',') as (a:chararray, b:chararray);
有没有办法实现以下
if (b == 1) {
a = 'abc';
else if (b == 2) {
a = 'xyz';
else
// retain whatever is there in the column 'a'