Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shounakmk219 committed Mar 15, 2024
1 parent 89d019f commit 9d91b32
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -819,8 +819,8 @@ private void checkQueryResultForDBTest(String column, String tableName)

private void checkQueryResultForDBTest(String column, String tableName, @Nullable String database)
throws Exception {
String query = (StringUtils.isNotBlank(database) ? "SET database='" + database + "'; " : "") +
"select max(" + column + ") from " + tableName + ";";
String query = (StringUtils.isNotBlank(database) ? "SET database='" + database + "'; " : "")
+ "select max(" + column + ") from " + tableName + ";";
// max value of 'ActualElapsedTime'
long expectedValue = 678;
JsonNode jsonNode = postQuery(query);
Expand Down

0 comments on commit 9d91b32

Please sign in to comment.