Open kabroxiko opened 2 years ago
I've found that the problem appears when the mongodb plugin is installed
Hey there @kabroxiko - can you please clarify what you were trying to do in which database platform and the details of your Liquibase installation? You noted in the description that it was mariadb, but then said you found a problem in the mongodb plugin. Are you trying to apply the changelog to mariadb or mongo? Assume you have installed the mongodb if you believe there is a problem with it? What are the details of the problem with the plugin that you see? Thanks!
Also affected. And I also have the mongo plugin installed. We migrate from mongo to sql, so we need to have both enabled for a while.
DB: Postgress Liquibase Versions (from our gradle file):
implementation(group = "org.liquibase", name = "liquibase-core", version = "4.8.0")
implementation(group = "org.liquibase.ext", name = "liquibase-mongodb", version = "4.8.0")
Managed to reproduce this issue with liquibase and liquibase-mongodb 4.16.1
. We will add this issue to our list of issues to fix. Thanks!
Same as #275 i think
Environment
Liquibase Version: 4.15.0
Liquibase Integration & Version: CLI
Database Vendor & Version: mariadb 10
Description
createIndex doesn't do anything
Steps To Reproduce
Use:
Actual Behavior
The createIndex doesn't give an error and doesn't create any index, the workaround is to create the index with sql command.
Expected/Desired Behavior
createIndex must create the index always or give an error.