Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Liquibase Bug triggered in the Upgrade of Spring Boot #88

Open
psavva opened this issue Oct 25, 2023 · 1 comment
Open

Liquibase Bug triggered in the Upgrade of Spring Boot #88

psavva opened this issue Oct 25, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@psavva
Copy link

psavva commented Oct 25, 2023

Dear Support Team,

In liquibase Version 4.14.0, a bug was introduced:
liquibase/liquibase#3205

This bug now suffices in our application due to the upgrade, and the fact that our schemas use hypers "-" within the schema name.
Please review the workarounds available for this, and implement it in our implementation as to bypass this issue (until the liquibase bug is fixed and we upgrade spring boot again)

Cyprus

@psavva psavva added the bug Something isn't working label Oct 25, 2023
@psavva
Copy link
Author

psavva commented Oct 25, 2023

Please note that we implemented this workaround:

/**
 * The Application class.
 */
@SpringBootApplication
@EnableConfigurationProperties(DgcConfigProperties.class)
public class DgcVerifierServiceApplication extends SpringBootServletInitializer {

    /**
     * The main Method.
     *
     * @param args the args for the main method
     */
    public static void main(String[] args) {
        System.setProperty(GlobalConfiguration.PRESERVE_SCHEMA_CASE.getKey(), "true");
        SpringApplication.run(DgcVerifierServiceApplication.class, args);
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant