You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2014/11/25 02:58:25 UTC

svn commit: r1641517 - /hive/trunk/ql/src/test/queries/clientpositive/auto_sortmerge_join_8.q

Author: hashutosh
Date: Tue Nov 25 01:58:25 2014
New Revision: 1641517

URL: http://svn.apache.org/r1641517
Log:
HIVE-7924 : auto_sortmerge_join_8 sometimes fails with OOM (Szehon Ho via Gunther Hagleitner)

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

Modified: hive/trunk/ql/src/test/queries/clientpositive/auto_sortmerge_join_8.q
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/queries/clientpositive/auto_sortmerge_join_8.q?rev=1641517&r1=1641516&r2=1641517&view=diff
==============================================================================
--- hive/trunk/ql/src/test/queries/clientpositive/auto_sortmerge_join_8.q (original)
+++ hive/trunk/ql/src/test/queries/clientpositive/auto_sortmerge_join_8.q Tue Nov 25 01:58:25 2014
@@ -1,3 +1,6 @@
+set hive.exec.submitviachild=true;
+set hive.exec.submit.local.task.via.child=true;
+
 -- small 2 part, 2 bucket & big 2 part, 4 bucket
 CREATE TABLE bucket_small (key string, value string) partitioned by (ds string) CLUSTERED BY (key) SORTED BY (key) INTO 2 BUCKETS STORED AS TEXTFILE;
 load data local inpath '../../data/files/smallsrcsortbucket1outof4.txt' INTO TABLE bucket_small partition(ds='2008-04-08');