in a relation X with only 1 row
X.A=null
X.B= "blahblah"
now I want to do:
Y = FILTER X BY A != B ;
I intended to say that since A is null and B is not, the condition should be true. but the actual result is that Y is empty, and the condition evaluates to false.
this is the same as SQL, where any condition involving null is false. while SQL can translate null with the NVL() function , PIG does not seem to have that , is there a clean way to do the above comparison?