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 2013/04/09 00:53:43 UTC

svn commit: r1465820 - /hive/trunk/ql/src/test/queries/clientpositive/auto_join26.q

Author: hashutosh
Date: Mon Apr  8 22:53:42 2013
New Revision: 1465820

URL: http://svn.apache.org/r1465820
Log:
HIVE-4311 : DOS line endings in auto_join26.q (Gunther Hagleitner via Ashutosh Chauhan)

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

Modified: hive/trunk/ql/src/test/queries/clientpositive/auto_join26.q
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/queries/clientpositive/auto_join26.q?rev=1465820&r1=1465819&r2=1465820&view=diff
==============================================================================
--- hive/trunk/ql/src/test/queries/clientpositive/auto_join26.q (original)
+++ hive/trunk/ql/src/test/queries/clientpositive/auto_join26.q Mon Apr  8 22:53:42 2013
@@ -1,10 +1,10 @@
-CREATE TABLE dest_j1(key INT, cnt INT);
-set hive.auto.convert.join = true;
-EXPLAIN
-INSERT OVERWRITE TABLE dest_j1 
-SELECT x.key, count(1) FROM src1 x JOIN src y ON (x.key = y.key) group by x.key;
-
-INSERT OVERWRITE TABLE dest_j1 
-SELECT  x.key, count(1) FROM src1 x JOIN src y ON (x.key = y.key) group by x.key;
-
-select * from dest_j1 x order by x.key;
+CREATE TABLE dest_j1(key INT, cnt INT);
+set hive.auto.convert.join = true;
+EXPLAIN
+INSERT OVERWRITE TABLE dest_j1 
+SELECT x.key, count(1) FROM src1 x JOIN src y ON (x.key = y.key) group by x.key;
+
+INSERT OVERWRITE TABLE dest_j1 
+SELECT  x.key, count(1) FROM src1 x JOIN src y ON (x.key = y.key) group by x.key;
+
+select * from dest_j1 x order by x.key;