remove weird getCurrentTimestampSelectString() on PostgresPlusDialect
... which was causing tests to fail... but why *now* I have no clue!
This commit is contained in:
parent
993aae6095
commit
84be9faf70
|
@ -76,8 +76,8 @@ public class PostgresPlusDialect extends PostgreSQLDialect {
|
|||
}
|
||||
|
||||
@Override
|
||||
public String getCurrentTimestampSelectString() {
|
||||
return "select sysdate";
|
||||
public String currentTimestamp() {
|
||||
return "current_timestamp";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue