Remove quoted string postgres

This commit is contained in:
mohitdeuex 2023-07-04 00:44:03 +05:30
parent 466e325e0a
commit 2bb5c970f9

View File

@ -20,7 +20,7 @@ public interface MigrationDAO {
Optional<String> getMaxVersion() throws StatementException;
@ConnectionAwareSqlQuery(value = "SELECT MAX(version) FROM SERVER_CHANGE_LOG", connectionType = MYSQL)
@ConnectionAwareSqlQuery(value = "SELECT max(version) FROM \"SERVER_CHANGE_LOG\"", connectionType = POSTGRES)
@ConnectionAwareSqlQuery(value = "SELECT max(version) FROM SERVER_CHANGE_LOG", connectionType = POSTGRES)
@SingleValue
Optional<String> getMaxServerMigrationVersion() throws StatementException;