You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jx...@apache.org on 2016/10/13 00:24:06 UTC

hive git commit: HIVE-14928 Analyze table no scan mess up schema (Jimmy Xiang, reviewed by Prasanth Jayachandran)

Repository: hive
Updated Branches:
  refs/heads/master 47d904675 -> f9843ac60


HIVE-14928 Analyze table no scan mess up schema (Jimmy Xiang, reviewed by Prasanth Jayachandran)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/f9843ac6
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/f9843ac6
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/f9843ac6

Branch: refs/heads/master
Commit: f9843ac60433d85985ff779a63243551b54f3d22
Parents: 47d9046
Author: Jimmy Xiang <jx...@apache.org>
Authored: Wed Oct 12 07:40:43 2016 -0700
Committer: Jimmy Xiang <jx...@apache.org>
Committed: Wed Oct 12 17:22:11 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hive/ql/exec/StatsNoJobTask.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/f9843ac6/ql/src/java/org/apache/hadoop/hive/ql/exec/StatsNoJobTask.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/StatsNoJobTask.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/StatsNoJobTask.java
index d5ae019..f5d2163 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/exec/StatsNoJobTask.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/StatsNoJobTask.java
@@ -75,10 +75,10 @@ public class StatsNoJobTask extends Task<StatsNoJobWork> implements Serializable
 
   private static final long serialVersionUID = 1L;
   private static transient final Logger LOG = LoggerFactory.getLogger(StatsNoJobTask.class);
-  private static ConcurrentMap<String, Partition> partUpdates;
-  private static Table table;
-  private static String tableFullName;
-  private static JobConf jc = null;
+  private ConcurrentMap<String, Partition> partUpdates;
+  private Table table;
+  private String tableFullName;
+  private JobConf jc = null;
 
   public StatsNoJobTask() {
     super();