You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Cheolsoo Park (JIRA)" <ji...@apache.org> on 2013/02/05 21:25:13 UTC

[jira] [Assigned] (PIG-3160) GFCross uses unnecessary loop

     [ https://issues.apache.org/jira/browse/PIG-3160?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Cheolsoo Park reassigned PIG-3160:
----------------------------------

    Assignee: Sandy Ryza
    
> GFCross uses unnecessary loop
> -----------------------------
>
>                 Key: PIG-3160
>                 URL: https://issues.apache.org/jira/browse/PIG-3160
>             Project: Pig
>          Issue Type: Improvement
>          Components: internal-udfs
>    Affects Versions: 0.10.0
>            Reporter: Sandy Ryza
>            Assignee: Sandy Ryza
>         Attachments: PIG-3610.patch
>
>
> The GFCross UDF contains the following code:
> {code}
> int[] digits = new int[numInputs];
> for (int i=0; i<numInputs; i++){
>   if (i == myNumber){
>     digits[i] = r.nextInt(numGroupsPerInput);
>   }else{
>     digits[i] = 0;
>  }
> }
> {code}
> As int arrays are initialized with all 0s already, this is equivalent to just settings digits[myNumber] and leaving the rest alone.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira