Author: thejas
Date: Fri Mar 14 15:49:20 2014
New Revision: 1577584
URL: http://svn.apache.org/r1577584
Log:
HIVE-6543 : TestEmbeddedThriftBinaryCLIService.testExecuteStatementAsync is
failing sometimes (Navis, reviewed by Xuefu Zhang, Ashutosh Chauhan)
Modified:
hive/trunk/service/src/test/org/apache/hive/service/cli/CLIServiceTest.java
Modified:
hive/trunk/service/src/test/org/apache/hive/service/cli/CLIServiceTest.java
URL:
http://svn.apache.org/viewvc/hive/trunk/service/src/test/org/apache/hive/service/cli/CLIServiceTest.java?rev=1577584&r1=1577583&r2=1577584&view=diff
==============================================================================
--- hive/trunk/service/src/test/org/apache/hive/service/cli/CLIServiceTest.java
(original)
+++ hive/trunk/service/src/test/org/apache/hive/service/cli/CLIServiceTest.java
Fri Mar 14 15:49:20 2014
@@ -216,7 +216,7 @@ public abstract class CLIServiceTest {
* to give a runtime time error.
* Also check that the sqlState and errorCode should be set
*/
- queryString = "CREATE TABLE NON_EXISTING_TAB (ID STRING) location
'hdfs://localhost:10000/a/b/c'";
+ queryString = "CREATE TABLE NON_EXISTING_TAB (ID STRING) location
'invalid://localhost:10000/a/b/c'";
opStatus = runQueryAsync(sessionHandle, queryString, confOverlay,
OperationState.ERROR, longPollingTimeout);
// sqlState, errorCode should be set
assertEquals(opStatus.getOperationException().getSQLState(), "08S01");