diff --git hcatalog/webhcat/java-client/src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java hcatalog/webhcat/java-client/src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java index b9cb06793ee62f60ff56777d55698602a8eb66c2..86d3acbcb462d244fa2dc2f48923aab1e3ccee66 100644 --- hcatalog/webhcat/java-client/src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java +++ hcatalog/webhcat/java-client/src/test/java/org/apache/hive/hcatalog/api/TestHCatClient.java @@ -434,7 +434,7 @@ public void testTransportFailure() throws Exception { HCatClient client = HCatClient.create(new Configuration(hcatConf)); boolean isExceptionCaught = false; // Table creation with a long table name causes ConnectionFailureException - final String tableName = "Temptable" + new BigInteger(200, new Random()).toString(2); + final String tableName = "Temptable" + new BigInteger(260, new Random()).toString(2); ArrayList cols = new ArrayList(); cols.add(new HCatFieldSchema("id", Type.INT, "id columns"));