HHH-10805 - fix hierarchy of PostgreSQL dialects.
This commit is contained in:
parent
30ad787c9e
commit
2abf9ddac4
|
@ -13,7 +13,8 @@ import java.util.List;
|
|||
*
|
||||
* @author Dionis Argiri
|
||||
*/
|
||||
public class PostgreSQL93Dialect extends PostgreSQL9Dialect {
|
||||
public class PostgreSQL93Dialect extends PostgreSQL92Dialect {
|
||||
|
||||
@Override
|
||||
public void augmentRecognizedTableTypes(List<String> tableTypesList) {
|
||||
super.augmentRecognizedTableTypes( tableTypesList );
|
||||
|
|
|
@ -12,7 +12,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 PostgreSQL92Dialect {
|
||||
public class PostgreSQL94Dialect extends PostgreSQL93Dialect {
|
||||
|
||||
/**
|
||||
* Constructs a PostgreSQL94Dialect
|
||||
|
|
Loading…
Reference in New Issue