HHH-9167 formatting, postgres 94 extends 92

This commit is contained in:
Brett Meyer 2014-05-19 15:17:10 -04:00
parent 4a8bc1f250
commit 66da9cac98
2 changed files with 9 additions and 5 deletions

View File

@ -31,8 +31,12 @@ import java.sql.Types;
* @author Mark Robinson
*/
public class PostgreSQL92Dialect extends PostgreSQL9Dialect {
public PostgreSQL92Dialect() {
super();
this.registerColumnType(Types.JAVA_OBJECT, "json");
}
/**
* Constructs a PostgreSQL92Dialect
*/
public PostgreSQL92Dialect() {
super();
this.registerColumnType( Types.JAVA_OBJECT, "json" );
}
}

View File

@ -29,7 +29,7 @@ import org.hibernate.type.StandardBasicTypes;
/**
* An SQL dialect for Postgres 9.4 and later. Adds support for various date and time functions
*/
public class PostgreSQL94Dialect extends PostgreSQL9Dialect {
public class PostgreSQL94Dialect extends PostgreSQL92Dialect {
/**
* Constructs a PostgreSQL94Dialect