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:48:45 UTC

svn commit: r1646599 - /hive/branches/branch-0.14/ql/src/test/queries/clientpositive/stats19.q

Author: sershe
Date: Fri Dec 19 00:48:45 2014
New Revision: 1646599

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

Modified:
    hive/branches/branch-0.14/ql/src/test/queries/clientpositive/stats19.q

Modified: hive/branches/branch-0.14/ql/src/test/queries/clientpositive/stats19.q
URL: http://svn.apache.org/viewvc/hive/branches/branch-0.14/ql/src/test/queries/clientpositive/stats19.q?rev=1646599&r1=1646598&r2=1646599&view=diff
==============================================================================
--- hive/branches/branch-0.14/ql/src/test/queries/clientpositive/stats19.q (original)
+++ hive/branches/branch-0.14/ql/src/test/queries/clientpositive/stats19.q Fri Dec 19 00:48:45 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;