You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ga...@apache.org on 2008/05/28 15:56:59 UTC

svn commit: r660954 - /incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java

Author: gates
Date: Wed May 28 06:56:59 2008
New Revision: 660954

URL: http://svn.apache.org/viewvc?rev=660954&view=rev
Log:
PIG-157 Fixed issue in HExecutionEngine where store was not be properly added to logical plan.


Modified:
    incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java

Modified: incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java
URL: http://svn.apache.org/viewvc/incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java?rev=660954&r1=660953&r2=660954&view=diff
==============================================================================
--- incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java (original)
+++ incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java Wed May 28 06:56:59 2008
@@ -280,6 +280,7 @@
                     pigContext).toString(),
                     BinStorage.class.getName());
                 str.setSFile(spec);
+                plan.addAsLeaf(str);
             }
             else{
                 spec = ((POStore)leaf).getSFile();