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/09/24 20:39:25 UTC

svn commit: r698684 - /incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/physicalLayer/expressionOperators/POProject.java

Author: gates
Date: Wed Sep 24 11:39:25 2008
New Revision: 698684

URL: http://svn.apache.org/viewvc?rev=698684&view=rev
Log:
PIG-452 Changed POProject to return POStatus_OK with null value instead of POStatus_NULL.


Modified:
    incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/physicalLayer/expressionOperators/POProject.java

Modified: incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/physicalLayer/expressionOperators/POProject.java
URL: http://svn.apache.org/viewvc/incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/physicalLayer/expressionOperators/POProject.java?rev=698684&r1=698683&r2=698684&view=diff
==============================================================================
--- incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/physicalLayer/expressionOperators/POProject.java (original)
+++ incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/physicalLayer/expressionOperators/POProject.java Wed Sep 24 11:39:25 2008
@@ -145,7 +145,7 @@
             } catch (ExecException ee) {
                 log.warn("Attempt to access field " + 
                     " which was not found in the input");
-                res.returnStatus = POStatus.STATUS_NULL;
+                res.returnStatus = POStatus.STATUS_OK;
                 ret = null;
             }
         } else {