[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Resolution: Fixed Status: Resolved (was: Patch Available) Patch checked-in. > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch, pig-1046_2.patch, > pig-1046_3.patch, pig-1046_4.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Status: Patch Available (was: Open) > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch, pig-1046_2.patch, > pig-1046_3.patch, pig-1046_4.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Attachment: pig-1046_4.patch Updated patch incorporating Olga's comments. > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch, pig-1046_2.patch, > pig-1046_3.patch, pig-1046_4.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Status: Open (was: Patch Available) > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch, pig-1046_2.patch, > pig-1046_3.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Status: Patch Available (was: Open) > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch, pig-1046_2.patch, > pig-1046_3.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Attachment: pig-1046_3.patch Updated patch incorporating Olga's comments. > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch, pig-1046_2.patch, > pig-1046_3.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Status: Open (was: Patch Available) > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch, pig-1046_2.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Attachment: pig-1046_2.patch Patch which includes same fix for collected hint for Group by. Test cases included. > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch, pig-1046_2.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Status: Patch Available (was: Open) > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch, pig-1046_2.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Status: Open (was: Patch Available) Collected hint for Group needs similar fix. Canceling patch as a result. Will be uploading new patch with that included. > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Status: Patch Available (was: Open) > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Attachment: pig-1046_1.patch Patch as per previous comment. With this patch both of following will work: j = join l1 by $0, l2 by $0 using 'skewed'; j = join l1 by $0, l2 by $0 using "skewed"; > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch, pig-1046_1.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Status: Open (was: Patch Available) > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Attachment: pig-1046.patch Patch as per comment above. Test cases included. > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Status: Patch Available (was: Open) > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair >Assignee: Ashutosh Chauhan > Fix For: 0.7.0 > > Attachments: pig-1046.patch > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
[jira] Updated: (PIG-1046) join algorithm specification is within double quotes
[ https://issues.apache.org/jira/browse/PIG-1046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ashutosh Chauhan updated PIG-1046: -- Fix Version/s: 0.7.0 > join algorithm specification is within double quotes > > > Key: PIG-1046 > URL: https://issues.apache.org/jira/browse/PIG-1046 > Project: Pig > Issue Type: Bug >Reporter: Thejas M Nair > Fix For: 0.7.0 > > > This fails - > j = join l1 by $0, l2 by $0 using 'skewed'; > This works - > j = join l1 by $0, l2 by $0 using "skewed"; > String constants are single-quoted in pig-latin. If the algorithm > specification is supposed to be a string, specifying it within single quotes > should be supported. > Alternatively, we should be using identifiers here, since these are > pre-defined in pig users will not be specifying arbitrary values that might > not be valid identifier. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.