remove weird getCurrentTimestampSelectString() on PostgresPlusDialect

... which was causing tests to fail... but why *now* I have no clue!
This commit is contained in:
Gavin 2022-11-28 15:46:22 +01:00 committed by Gavin King
parent 993aae6095
commit 84be9faf70
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ public class PostgresPlusDialect extends PostgreSQLDialect {
}
@Override
public String getCurrentTimestampSelectString() {
return "select sysdate";
public String currentTimestamp() {
return "current_timestamp";
}
@Override