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 2017/01/26 05:19:44 UTC

svn commit: r1780332 - in /pig/branches/branch-0.16: CHANGES.txt test/e2e/pig/deployers/LocalDeployer.pm

Author: rohini
Date: Thu Jan 26 05:19:44 2017
New Revision: 1780332

URL: http://svn.apache.org/viewvc?rev=1780332&view=rev
Log:
PIG-5111: e2e Utf8Test fails in local mode (rohini)

Modified:
    pig/branches/branch-0.16/CHANGES.txt
    pig/branches/branch-0.16/test/e2e/pig/deployers/LocalDeployer.pm

Modified: pig/branches/branch-0.16/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.16/CHANGES.txt?rev=1780332&r1=1780331&r2=1780332&view=diff
==============================================================================
--- pig/branches/branch-0.16/CHANGES.txt (original)
+++ pig/branches/branch-0.16/CHANGES.txt Thu Jan 26 05:19:44 2017
@@ -32,6 +32,8 @@ OPTIMIZATIONS
 
 BUG FIXES
 
+PIG-5111: e2e Utf8Test fails in local mode (rohini)
+
 PIG-5112: Cleanup pig-template.xml (daijy)
 
 PIG-5046: Skewed join with auto parallelism hangs when right input also has autoparallelism (rohini)

Modified: pig/branches/branch-0.16/test/e2e/pig/deployers/LocalDeployer.pm
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.16/test/e2e/pig/deployers/LocalDeployer.pm?rev=1780332&r1=1780331&r2=1780332&view=diff
==============================================================================
--- pig/branches/branch-0.16/test/e2e/pig/deployers/LocalDeployer.pm (original)
+++ pig/branches/branch-0.16/test/e2e/pig/deployers/LocalDeployer.pm Thu Jan 26 05:19:44 2017
@@ -209,11 +209,21 @@ sub generateData
             'filetype' => "ranking",
             'rows' => 30,
             'outfile' => "singlefile/prerank",
+        }, {
+            'name' => "utf8Voter",
+            'filetype' => "utf8Voter",
+            'rows' => 30,
+            'outfile' => "utf8Data/选民/utf8Voter",
+        }, {
+            'name' => "utf8Student",
+            'filetype' => "utf8Student",
+            'rows' => 300,
+            'outfile' => "utf8Data/学生/utf8Student",
         }
     );
 
 	# Create the target directories
-    for my $dir ("singlefile", "dir", "types", "glob/star/somegood",
+    for my $dir ("singlefile", "utf8Data/选民", "utf8Data/学生", "dir", "types", "glob/star/somegood",
             "glob/star/moregood", "glob/star/bad") {
         my @cmd = ("mkdir", "-p", "$cfg->{'inpathbase'}/$dir");
 	    $self->runCmd($log, \@cmd);