HHH-13913 An SQL Dialect for PostgreSQL 10 and later. Adds support for Partition table.
This commit is contained in:
parent
d901ccfa33
commit
5a57bc9798
|
@ -6,6 +6,8 @@
|
||||||
*/
|
*/
|
||||||
package org.hibernate.dialect;
|
package org.hibernate.dialect;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import org.hibernate.dialect.identity.IdentityColumnSupport;
|
import org.hibernate.dialect.identity.IdentityColumnSupport;
|
||||||
import org.hibernate.dialect.identity.PostgreSQL10IdentityColumnSupport;
|
import org.hibernate.dialect.identity.PostgreSQL10IdentityColumnSupport;
|
||||||
|
|
||||||
|
@ -18,4 +20,15 @@ public class PostgreSQL10Dialect extends PostgreSQL95Dialect {
|
||||||
public IdentityColumnSupport getIdentityColumnSupport() {
|
public IdentityColumnSupport getIdentityColumnSupport() {
|
||||||
return new PostgreSQL10IdentityColumnSupport();
|
return new PostgreSQL10IdentityColumnSupport();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An SQL Dialect for PostgreSQL 10 and later. Adds support for Partition table.
|
||||||
|
*
|
||||||
|
* @param tableTypesList
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void augmentRecognizedTableTypes(List<String> tableTypesList) {
|
||||||
|
super.augmentRecognizedTableTypes( tableTypesList );
|
||||||
|
tableTypesList.add( "PARTITIONED TABLE" );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue