HZ Jiang (
https://hibernate.atlassian.net/secure/ViewProfile.jspa?accountId=5ab1295...
) *commented* on HHH-13954 (
https://hibernate.atlassian.net/browse/HHH-13954?atlOrigin=eyJpIjoiZTMxZj...
)
Re: PostgreSQL - partitioned table: Schema-validation: missing table (when table exists) (
https://hibernate.atlassian.net/browse/HHH-13954?atlOrigin=eyJpIjoiZTMxZj...
)
You can refer to
https://github.com/hibernate/hibernate-orm/pull/3350 Should solve your
problem
You can temporarily use a custom dialect:
public class CustomPostgresqlDialect extends PostgreSQL10Dialect {
/**
* 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");
}
}
(
https://hibernate.atlassian.net/browse/HHH-13954#add-comment?atlOrigin=ey...
) Add Comment (
https://hibernate.atlassian.net/browse/HHH-13954#add-comment?atlOrigin=ey...
)
Get Jira notifications on your phone! Download the Jira Cloud app for Android (
https://play.google.com/store/apps/details?id=com.atlassian.android.jira....
) or iOS (
https://itunes.apple.com/app/apple-store/id1006972087?pt=696495&ct=Em...
) This message was sent by Atlassian Jira (v1001.0.0-SNAPSHOT#100124- sha1:93e2dd3 )