Re: wild card for all fields in a tuple

2011-01-12 Thread Dexin Wang
Yeah, that works great. Thanks Jonathan and Alan. I can see that all fields in between feature will be totally useful for some cases. On Wed, Jan 12, 2011 at 3:33 PM, Alan Gates wrote: > Jonathan is right, you can do all fields in a tuple with *. I was thinking > of doing all fields in between

Re: wild card for all fields in a tuple

2011-01-12 Thread Alan Gates
Jonathan is right, you can do all fields in a tuple with *. I was thinking of doing all fields in between two fields, which you can't do yet. Alan. On Jan 12, 2011, at 3:18 PM, Alan Gates wrote: There isn't a way to do that yet. See https://issues.apache.org/jira/browse/PIG-1693 for ou

Re: wild card for all fields in a tuple

2011-01-12 Thread Alan Gates
There isn't a way to do that yet. See https://issues.apache.org/jira/browse/PIG-1693 for our plans on adding it in the next release. Alan. On Jan 12, 2011, at 2:51 PM, Dexin Wang wrote: Hi, Hope there is some simple answer to this. I have bunch of rows, for each row, I want to add a colu

Re: wild card for all fields in a tuple

2011-01-12 Thread Jonathan Coveney
Foreach a generate function(thing), *; should do what yopu want. * just throws on all the columns Sent via BlackBerry -Original Message- From: Dexin Wang Date: Wed, 12 Jan 2011 14:51:58 To: Reply-To: user@pig.apache.org Subject: wild card for all fields in a tuple Hi, Hope there is

wild card for all fields in a tuple

2011-01-12 Thread Dexin Wang
Hi, Hope there is some simple answer to this. I have bunch of rows, for each row, I want to add a column which is derived from some existing columns. And I have large number of columns in my input tuple so I don't want to repeat the name using "AS" when I generate. Is there an easy way just to app