!1270 spotbug fixes for TestIndexResources.java
Merge pull request !1270 from i-robot/pull186
This commit is contained in:
commit
08e7ae2ce9
|
|
@ -508,12 +508,12 @@ public class TestIndexResources
|
|||
|
||||
String getNewTableName()
|
||||
{
|
||||
return "hive.test.t" + Integer.valueOf(count.getAndIncrement()).toString();
|
||||
return "hive.test.t" + Integer.valueOf(count.getAndIncrement());
|
||||
}
|
||||
|
||||
String getNewIndexName()
|
||||
{
|
||||
return "idx" + Integer.valueOf(count.getAndIncrement()).toString();
|
||||
return "idx" + Integer.valueOf(count.getAndIncrement());
|
||||
}
|
||||
|
||||
Pair<Integer, MaterializedResult> runTwiceGetSplitAndMaterializedResult(String testerQuery)
|
||||
|
|
|
|||
Loading…
Reference in New Issue