HHH-8941 simplified the dialect function

This commit is contained in:
Brett Meyer 2014-05-23 17:31:02 -04:00
parent 54cc9073f4
commit df7c35d956
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public class FirebirdDialect extends InterbaseDialect {
public FirebirdDialect() {
super();
registerFunction( "replace", new SQLFunctionTemplate( StandardBasicTypes.STRING, "replace(?1, ?2, ?3)" ) );
registerFunction( "replace", new StandardSQLFunction( "replace", StandardBasicTypes.STRING ) );
}
@Override