You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2014/12/19 01:43:11 UTC

svn commit: r1646598 - /hive/trunk/ql/src/test/queries/clientpositive/stats19.q

Author: sershe
Date: Fri Dec 19 00:43:11 2014
New Revision: 1646598

URL: http://svn.apache.org/r1646598
Log:
HIVE-9162 : stats19 test is environment-dependant (Sergey Shelukhin, reviewed by Laljo John Pullokkaran)

Modified:
    hive/trunk/ql/src/test/queries/clientpositive/stats19.q

Modified: hive/trunk/ql/src/test/queries/clientpositive/stats19.q
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/queries/clientpositive/stats19.q?rev=1646598&r1=1646597&r2=1646598&view=diff
==============================================================================
--- hive/trunk/ql/src/test/queries/clientpositive/stats19.q (original)
+++ hive/trunk/ql/src/test/queries/clientpositive/stats19.q Fri Dec 19 00:43:11 2014
@@ -17,7 +17,7 @@ set hive.stats.key.prefix.max.length=0;
 -- The stats key should be hashed since the max length is too small
 insert overwrite table stats_part partition (ds='2010-04-08', hr = '13') select key, value from src;
 
-set hive.stats.key.prefix.max.length=250;
+set hive.stats.key.prefix.max.length=4000;
 
 -- The stats key should not be hashed since the max length is large enough
 insert overwrite table stats_part partition (ds='2010-04-08', hr = '13') select key, value from src;
@@ -41,7 +41,7 @@ insert overwrite table stats_part partit
 
 desc formatted stats_part partition (ds='2010-04-08', hr = '13');
 
-set hive.stats.key.prefix.max.length=250;
+set hive.stats.key.prefix.max.length=4000;
 
 -- The stats key should not be hashed since the max length is large enough
 insert overwrite table stats_part partition (ds='2010-04-08', hr = '13') select key, value from src;
@@ -66,7 +66,7 @@ set hive.stats.key.prefix.max.length=0;
 -- The stats key should be hashed since the max length is too small
 insert overwrite table stats_part partition (ds='2010-04-08', hr) select key, value, '13' from src;
 
-set hive.stats.key.prefix.max.length=250;
+set hive.stats.key.prefix.max.length=4000;
 
 -- The stats key should not be hashed since the max length is large enough
 insert overwrite table stats_part partition (ds='2010-04-08', hr) select key, value, '13' from src;