You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by br...@apache.org on 2015/01/14 20:29:37 UTC

svn commit: r1651781 - /hive/branches/HIVE-8065/ql/src/test/org/apache/hadoop/hive/ql/io/TestSymlinkTextInputFormat.java

Author: brock
Date: Wed Jan 14 19:29:37 2015
New Revision: 1651781

URL: http://svn.apache.org/r1651781
Log:
HIVE-9375 - Fix merge issue with TestSymlinkTextInputFormat.testCombine [Encryption Branch] (Sergio via Brock)

Modified:
    hive/branches/HIVE-8065/ql/src/test/org/apache/hadoop/hive/ql/io/TestSymlinkTextInputFormat.java

Modified: hive/branches/HIVE-8065/ql/src/test/org/apache/hadoop/hive/ql/io/TestSymlinkTextInputFormat.java
URL: http://svn.apache.org/viewvc/hive/branches/HIVE-8065/ql/src/test/org/apache/hadoop/hive/ql/io/TestSymlinkTextInputFormat.java?rev=1651781&r1=1651780&r2=1651781&view=diff
==============================================================================
--- hive/branches/HIVE-8065/ql/src/test/org/apache/hadoop/hive/ql/io/TestSymlinkTextInputFormat.java (original)
+++ hive/branches/HIVE-8065/ql/src/test/org/apache/hadoop/hive/ql/io/TestSymlinkTextInputFormat.java Wed Jan 14 19:29:37 2015
@@ -165,7 +165,7 @@ public class TestSymlinkTextInputFormat
             + " failed with exit code= " + ecode);
       }
 
-      String cmd = "select key from " + tblName;
+      String cmd = "select key*1 from " + tblName;
       ecode = drv.compile(cmd);
       if (ecode != 0) {
         throw new Exception("Select compile: " + cmd