Re : Best way to extend an existing Change (maybe a limitation)
Ok, I got it!Since I am overriding AddColumn, it is inheriting getSerializedObjectNamespace which returns STANDARD_CHANGELOG_NAMESPACE enum. I solved my problem by overriding...
View ArticleRe : Does Liquibase support dry run?
Without control on transactions (or dry run) we can not migrate to Liquibase all our schemas.Please help.
View ArticleRe : Best way to extend an existing Change (maybe a limitation)
Glad you got it. Thanks for the update. I am working on improving the extension docs.Nathan
View ArticleRe : Does Liquibase support dry run?
Your two options in liquibase are running in "update" mode where it actually executes the changesets or "updateSql" mode where it generates the SQL that would run which you can inspect and run as you...
View ArticleUpgrade 2.0.5 => 3.1.1
What is involved in upgrading Liquibase 2.0.5 to 3.1.1? Specifically, do any of the changelogs need to be changed or it's just a matter of replacing the JAR and updating configuration files?
View ArticleRe : Generated wrong drop index statement
Thanks, I created https://liquibase.jira.com/browse/CORE-1794 to get the change into the main liquibase code.Nathan
View ArticleRe : SpringLiquibase old JavaDoc
It looks like it was taken out a long time ago (2008 commit 8a4e1a3) without a lot of explaination in the commit message.I've generally assumed SpringLiquibase is used on startup to automatically make...
View ArticleRe : Tag changset in sql format
Yes, that would be the best way to have a mix of raw sql with xml-changeset functionality.Nathan
View ArticleRe : Liquibase commandline: diff
You shouldn't include the referenceDriver block.Nathan
View ArticleRe : Avoid schema/catalog sql generation
I'll have to look more into it. Are you able to send the test cases you used?Nathan
View ArticleRe : Upgrade 2.0.5 => 3.1.1
2.0.5 -> 3.1.1 should be backwards compatible with the change logs and you should just have to update your jar file. http://www.liquibase.org/v3_upgrade.html and...
View ArticleRe : Enhancing Main.java to help other programs call it.
Forgot to reply, apparently.I'd prefer the pull request to go into master. I'm trying to keep 3.1.x to primarily bug fixes and this seems larger than that. I've also not seen many major 3.1.x bugs and...
View ArticleRe : Liquibase commandline: diff
Hi,When ommiting the referenceDriver block there is an error saying:[ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:3.1.1:diff (default-cli) on project bel-schema-migrate: Error...
View ArticleRe : Liquibase commandline: diff
Does it work with setting the driver to liquibase.ext.hibernate.database.connection.HibernateDriver ? And/or is the liquibase-hibernate jar in your classpath?Nathan
View ArticleInformix issues
Hello,I'm having some issues with informix version 11.50 across Liquibase 3.0.8 and 3.1.1.I used 3.1.1 to generate a changelog ok, but doing an update fails due to this bug:...
View ArticleNPE in liquibase-hibernate TableSnapshotGenerator during snapshotObject...
Hi,I'm slowly working my way though integrating Liquibase, Hibernate, Spring and the Maven and I've stumbled onto what I believe is a bug in the liquibase-hibernate extension in the...
View ArticlegenerateChangeLog (MySQL) does not work with cross schema foreign keys?
We're using MySQL 5.5 and a database designed with mysql workbench.We have defined multiple schema's with tables inside them ofcourse.tables in the schema's can have foreign keys to another schema's...
View ArticleRe : generateChangeLog (MySQL) does not work with cross schema foreign keys?
Could this have any relevance to https://liquibase.jira.com/browse/CORE-1785 and https://liquibase.jira.com/browse/CORE-1784 by any chance?
View ArticleRe : calling pragma before anything else ?
I managed to call the pragma on the driver via JNI interface. If anyone needs this, I will post the code in few days.During the coding, I found it simpler to add the jdbc jar to the classpath before...
View ArticleRe : calling pragma before anything else ?
Good to hear you have it working. It should be just fine to add the jdbc jar either way.Nathan
View Article