Skip to content

Commit

Permalink
Fix: Lint Issues
Browse files Browse the repository at this point in the history
  • Loading branch information
BLasan committed Sep 26, 2024
1 parent b6a4196 commit 068529c
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4412,9 +4412,13 @@ public static class SystemConfigsConstants {
* Static class to hold database queries related to AM_TRANSACTION_RECORDS table
*/
public static class TransactionCountConstants {
public static final String INSERT_TRANSACTION_COUNT = "INSERT INTO AM_TRANSACTION_RECORDS " + "(ID, HOST, SERVER_ID, SERVER_TYPE, COUNT, RECORDED_TIME) " + "VALUES (?,?,?,?,?,?)";
public static final String GET_TRANSACTION_COUNT = "SELECT SUM(COUNT) FROM AM_TRANSACTION_RECORDS " + "WHERE RECORDED_TIME >= ? AND RECORDED_TIME <= ?";
public static final String INSERT_TRANSACTION_COUNT =
"INSERT INTO AM_TRANSACTION_RECORDS " + "(ID, HOST, SERVER_ID, SERVER_TYPE, COUNT, RECORDED_TIME) "
+ "VALUES (?,?,?,?,?,?)";
public static final String GET_TRANSACTION_COUNT =
"SELECT SUM(COUNT) FROM AM_TRANSACTION_RECORDS " + "WHERE RECORDED_TIME >= ? AND RECORDED_TIME <= ?";
}

public static class CustomBackendConstants {
public static final String ADD_CUSTOM_BACKEND =
"INSERT INTO AM_API_SEQUENCE_BACKEND (ID,API_UUID,SEQUENCE,TYPE,REVISION_UUID,NAME) "
Expand Down

0 comments on commit 068529c

Please sign in to comment.