You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ro...@apache.org on 2014/04/14 23:41:21 UTC

svn commit: r1587331 - in /pig/trunk: CHANGES.txt test/perf/pigmix/bin/runpigmix.pl

Author: rohini
Date: Mon Apr 14 21:41:21 2014
New Revision: 1587331

URL: http://svn.apache.org/r1587331
Log:
PIG-3895: Pigmix run script has compilation error (rohini)

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/test/perf/pigmix/bin/runpigmix.pl

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1587331&r1=1587330&r2=1587331&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Mon Apr 14 21:41:21 2014
@@ -107,6 +107,8 @@ PIG-3882: Multiquery off mode execution 
  
 BUG FIXES
 
+PIG-3895: Pigmix run script has compilation error (rohini)
+
 PIG-3885: AccumuloStorage incompatible with Accumulo 1.6.0 (elserj via daijy)
 
 PIG-3888: Direct fetch doesn't differentiate between frontend and backend sides (lbendig via daijy)

Modified: pig/trunk/test/perf/pigmix/bin/runpigmix.pl
URL: http://svn.apache.org/viewvc/pig/trunk/test/perf/pigmix/bin/runpigmix.pl?rev=1587331&r1=1587330&r2=1587331&view=diff
==============================================================================
--- pig/trunk/test/perf/pigmix/bin/runpigmix.pl (original)
+++ pig/trunk/test/perf/pigmix/bin/runpigmix.pl Mon Apr 14 21:41:21 2014
@@ -81,9 +81,10 @@ for(my $i = 1; $i <= 17; $i++) {
         $total_mr_times = $total_mr_times + $mr_times;
 
 
-	my $multiplier=0;
-	if ($mr_times!=0) 
-	    $multiplier = $pig_times/$mr_times;
+        my $multiplier=0;
+        if ($mr_times!=0) {
+            $multiplier = $pig_times/$mr_times;
+        }
         print "PigMix_$i pig run time: $pig_times, java run time: $mr_times, multiplier: $multiplier\n";
     }
 }