Author: heyongqiang
Date: Thu Oct 13 20:36:23 2011
New Revision: 1183080

URL: http://svn.apache.org/viewvc?rev=1183080&view=rev
Log:
HIVE-2499: small table filesize for automapjoin is not correct in hive-site.xml 
(binlijin via He Yongqiang)

Modified:
    hive/trunk/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
    hive/trunk/ql/src/test/queries/clientpositive/auto_join28.q

Modified: hive/trunk/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
URL: 
http://svn.apache.org/viewvc/hive/trunk/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java?rev=1183080&r1=1183079&r2=1183080&view=diff
==============================================================================
--- hive/trunk/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java 
(original)
+++ hive/trunk/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java Thu 
Oct 13 20:36:23 2011
@@ -311,7 +311,7 @@ public class HiveConf extends Configurat
     HIVEHADOOPMAXMEM("hive.mapred.local.mem", 0),
 
     //small table file size
-    HIVESMALLTABLESFILESIZE("hive.smalltable.filesize",25000000L), //25M
+    HIVESMALLTABLESFILESIZE("hive.mapjoin.smalltable.filesize",25000000L), 
//25M
 
     // random number for split sampling
     HIVESAMPLERANDOMNUM("hive.sample.seednumber", 0),

Modified: hive/trunk/ql/src/test/queries/clientpositive/auto_join28.q
URL: 
http://svn.apache.org/viewvc/hive/trunk/ql/src/test/queries/clientpositive/auto_join28.q?rev=1183080&r1=1183079&r2=1183080&view=diff
==============================================================================
--- hive/trunk/ql/src/test/queries/clientpositive/auto_join28.q (original)
+++ hive/trunk/ql/src/test/queries/clientpositive/auto_join28.q Thu Oct 13 
20:36:23 2011
@@ -1,4 +1,4 @@
-set hive.smalltable.filesize = 1;
+set hive.mapjoin.smalltable.filesize = 1;
 
 set hive.auto.convert.join = true;
 explain


Reply via email to