I have two datasets:
A = {uid, url}; B = {uid, url};
now i do a cogroup:
C = COGROUP A BY uid, B BY uid;
and I want to change C to { group AS uid, DISTINCT A.url+B.url};
My question is, how do I do this concatenation of the two packages A.url and B.url?
Or, in another way, how to do DISTINCTfor multiple columns?
source
share