You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by xu...@apache.org on 2015/01/30 18:44:56 UTC

svn commit: r1656069 - in /hive/branches/spark: ./ hbase-handler/pom.xml ql/src/java/org/apache/hadoop/hive/ql/exec/UDTFOperator.java

Author: xuefu
Date: Fri Jan 30 17:44:55 2015
New Revision: 1656069

URL: http://svn.apache.org/r1656069
Log:
 HIVE-9409: Avoid ser/de loggers as logging framework can be incompatible on driver and workers (Rui via Xuefu)
Merged from trunk, r1654525

Modified:
    hive/branches/spark/   (props changed)
    hive/branches/spark/hbase-handler/pom.xml   (props changed)
    hive/branches/spark/ql/src/java/org/apache/hadoop/hive/ql/exec/UDTFOperator.java

Propchange: hive/branches/spark/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Jan 30 17:44:55 2015
@@ -2,4 +2,4 @@
 /hive/branches/cbo:1605012-1627125
 /hive/branches/tez:1494760-1622766
 /hive/branches/vectorization:1466908-1527856
-/hive/trunk:1608589-1653743,1653999
+/hive/trunk:1608589-1653743,1653999,1654525

Propchange: hive/branches/spark/hbase-handler/pom.xml
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Jan 30 17:44:55 2015
@@ -2,4 +2,4 @@
 /hive/branches/cbo/hbase-handler/pom.xml:1605012-1627125
 /hive/branches/tez/hbase-handler/pom.xml:1494760-1622766
 /hive/branches/vectorization/hbase-handler/pom.xml:1466908-1527856
-/hive/trunk/hbase-handler/pom.xml:1494760-1537575,1608589-1653696,1653999
+/hive/trunk/hbase-handler/pom.xml:1494760-1537575,1608589-1653696,1653999,1654525

Modified: hive/branches/spark/ql/src/java/org/apache/hadoop/hive/ql/exec/UDTFOperator.java
URL: http://svn.apache.org/viewvc/hive/branches/spark/ql/src/java/org/apache/hadoop/hive/ql/exec/UDTFOperator.java?rev=1656069&r1=1656068&r2=1656069&view=diff
==============================================================================
--- hive/branches/spark/ql/src/java/org/apache/hadoop/hive/ql/exec/UDTFOperator.java (original)
+++ hive/branches/spark/ql/src/java/org/apache/hadoop/hive/ql/exec/UDTFOperator.java Fri Jan 30 17:44:55 2015
@@ -42,7 +42,7 @@ import org.apache.hadoop.hive.serde2.obj
 public class UDTFOperator extends Operator<UDTFDesc> implements Serializable {
   private static final long serialVersionUID = 1L;
 
-  protected final Log LOG = LogFactory.getLog(this.getClass().getName());
+  protected static final Log LOG = LogFactory.getLog(UDTFOperator.class.getName());
 
   StructObjectInspector udtfInputOI = null;
   Object[] objToSendToUDTF = null;