HHH-9167 formatting, postgres 94 extends 92
This commit is contained in:
parent
4a8bc1f250
commit
66da9cac98
|
@ -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" );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue