Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. package kz.inessoft.stomagic.common.data.util;
  2.  
  3. import org.hibernate.dialect.PostgreSQL9Dialect;
  4. import org.hibernate.dialect.function.StandardSQLFunction;
  5.  
  6. /**
  7. * Created by damir.keldibekov on 24.04.2017.
  8. */
  9. public class CustomPostgreSQL9Dialect extends PostgreSQL9Dialect {
  10.  
  11. public CustomPostgreSQL9Dialect() {
  12. super();
  13. registerFunction("replace", new StandardSQLFunction("replace"));
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement