[
https://issues.apache.org/jira/browse/PIG-3160?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Cheolsoo Park updated PIG-3160:
-------------------------------
Resolution: Fixed
Fix Version/s: 0.12
Status: Resolved (was: Patch Available)
Committed to trunk. Thanks Sandy!
> 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
> Fix For: 0.12
>
> 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