Skip to content

Commit

Permalink
New DomUI version with Jquery 3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mamo committed Dec 30, 2024
1 parent 11a1489 commit 1673739
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,15 @@ public synchronized static void initialize(final DataSource ds) throws Exception
*/
serviceBuilder.applySetting("hibernate.id.new_generator_mappings", "true"); // MUST BE BEFORE config.configure

/*
* WARN HHH000457: Joined inheritance hierarchy [nl.bloomville.cdb.model.Party] defined explicit @DiscriminatorColumn.
* Legacy Hibernate behavior was to ignore the @DiscriminatorColumn.
* However, as part of issue HHH-6911 we now apply the explicit @DiscriminatorColumn.
* If you would prefer the legacy behavior, enable the `hibernate.discriminator.ignore_explicit_for_joined`
* setting (hibernate.discriminator.ignore_explicit_for_joined=true)
*/
serviceBuilder.applySetting("hibernate.discriminator.ignore_explicit_for_joined", "true");

m_hibernateOptions.forEach((option, value) -> serviceBuilder.applySetting(option, value));

if(DeveloperOptions.getBool("hibernate.format_sql", true)) {
Expand Down

0 comments on commit 1673739

Please sign in to comment.