Author: gates
Date: Fri Jan 6 22:58:56 2012
New Revision: 1228491
URL: http://svn.apache.org/viewvc?rev=1228491&view=rev
Log:
HCATALOG-198 Correct version of Util.pm that should have been in the previous
checkin.
Modified:
incubator/hcatalog/branches/branch-0.3/src/test/e2e/hcatalog/drivers/Util.pm
Modified:
incubator/hcatalog/branches/branch-0.3/src/test/e2e/hcatalog/drivers/Util.pm
URL:
http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.3/src/test/e2e/hcatalog/drivers/Util.pm?rev=1228491&r1=1228490&r2=1228491&view=diff
==============================================================================
---
incubator/hcatalog/branches/branch-0.3/src/test/e2e/hcatalog/drivers/Util.pm
(original)
+++
incubator/hcatalog/branches/branch-0.3/src/test/e2e/hcatalog/drivers/Util.pm
Fri Jan 6 22:58:56 2012
@@ -558,4 +558,13 @@ sub getLocaleCmd
."export LC_IDENTIFICATION=\"$locale\"";
}
+sub findPigWithoutHadoopJar($$)
+{
+ my ($cfg, $log) = @_;
+
+ my $jar = `ls $cfg->{'pigpath'}/pig-*-withouthadoop.jar`;
+ chomp $jar;
+ return $jar;
+}
+
1;