The integration test DefaultCatalogAndSchemaTest contains a method named generateScriptFromMetadata with a comment referring to Quarkus code: https://github.com/hibernate/hibernate-orm/blob/7e629957e45e1c1466eb0b7f9cb9c316c4705fa3/hibernate-core/src/test/java/org/hibernate/orm/test/boot/database/qualfiedTableNaming/DefaultCatalogAndSchemaTest.java#L638-L666 The code in Quarkus had to be updated, as the integration test is using the SchemaExport tool which is no longer an SPI exposed by Hibernate ORM core (it was moved to the ant tooling jar). We should either:
- update the integration test to ensure it covers the Quarkus needs
- (or) restore the availability of a stable SPI, add tests for that and move Quarkus to the new SPI.
|