Author: rohini Date: Thu Aug 18 15:58:42 2022 New Revision: 1903527 URL: http://svn.apache.org/viewvc?rev=1903527&view=rev Log: PIG-5406: TestJoinLocal imports org.python.google.common.collect.Lists instead of org.google.common.collect.Lists (rohini)
Modified: pig/trunk/CHANGES.txt pig/trunk/test/org/apache/pig/test/TestJoinLocal.java Modified: pig/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1903527&r1=1903526&r2=1903527&view=diff ============================================================================== --- pig/trunk/CHANGES.txt (original) +++ pig/trunk/CHANGES.txt Thu Aug 18 15:58:42 2022 @@ -112,6 +112,8 @@ OPTIMIZATIONS BUG FIXES +PIG-5406: TestJoinLocal imports org.python.google.common.collect.Lists instead of org.google.common.collect.Lists (rohini) + PIG-5425: Pig 0.15 and later don't set context signature correctly (jtolar via rohini) PIG-5413: [spark] TestStreaming.testInputCacheSpecs failing with "File script1.pl was already registered" (knoguchi) Modified: pig/trunk/test/org/apache/pig/test/TestJoinLocal.java URL: http://svn.apache.org/viewvc/pig/trunk/test/org/apache/pig/test/TestJoinLocal.java?rev=1903527&r1=1903526&r2=1903527&view=diff ============================================================================== --- pig/trunk/test/org/apache/pig/test/TestJoinLocal.java (original) +++ pig/trunk/test/org/apache/pig/test/TestJoinLocal.java Thu Aug 18 15:58:42 2022 @@ -41,7 +41,8 @@ import org.apache.pig.newplan.logical.re import org.apache.pig.newplan.logical.relational.LogicalPlan; import org.junit.Before; import org.junit.Test; -import org.python.google.common.collect.Sets; + +import com.google.common.collect.Sets; public class TestJoinLocal extends TestJoinBase {