Re : NPE in liquibase-hibernate TableSnapshotGenerator during snapshotObject...
That is a known bug. It is fixed in the repository now and will probably have a new build containing it next week.Nathan
View Articlepostgresql check constraint
I am unable to apply a check constraint with liquibase.Via direct sql I can do this$psql -c "CREATE TABLE a ( colors text CHECK (colors IN ('red', 'yellow', 'blue'))); "CREATE TABLE$psql -c '\d+ a;'...
View ArticleRe : Liquibase commandline: diff
Hi,Yes liquibase hibernate is in the path. I tried removing the dialect but it did not change anything.Using...
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
This forum topic seems to specifically address a question I have been asked by management. Our project adopted Liquibase release 2.0.5 about 6 months ago and we have been successfully using it since....
View ArticleRe : Informix issues
Thanks for reporting the problems. I created https://liquibase.jira.com/browse/CORE-1797 and https://liquibase.jira.com/browse/CORE-1798 and https://liquibase.jira.com/browse/CORE-1799 to track the...
View ArticleRe : generateChangeLog (MySQL) does not work with cross schema foreign keys?
The fix for CORE-1784 may apply to your problem even through you are seeing a different symptom. CORE-1785 will add the support you are looking for to create a single changelog across multiple schemas....
View ArticleRe : postgresql check constraint
It appears to be a bug. I created https://liquibase.jira.com/browse/CORE-1800 to track the fix. For now, you will have to fall back to the <sql> tag and define it yourself (either in the table...
View ArticleRe : Liquibase commandline: diff
I pushed a change that may fix your problem. I'm planning on having an updated liquibase-hiberate release early next week.I attached a zip file renamed as .txt with the newest liquibase-hibernate.jar...
View ArticleRe : Upgrade 2.0.5 => 3.1.1
Hi,Upgrade was no problem except the fact that all changesets with <sql> in it will not run on both Windows und Linux at the same time (before running clearCheckSums).I have no idea why because...
View ArticleRe : Liquibase commandline: diff
Hello,Thank you for sharing the jar update in advance :)I changed my pom to use your snapshot as follow<dependency> <groupId>org.liquibase.ext</groupId>...
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
I created https://liquibase.jira.com/browse/CORE-1802 to track improvements to the logging. Liquibase should be providing feedback on what it is executing. We've not logged the return value of SQL but...
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
Implementation of CORE-1802 will likely solve my situation. That will likely be justification I need to push for upgrade to Liquibase 3.2 when it is available. Thanks for considering the topic of...
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
Thanks, I'll see what I can do to get it into 3.2.Nathan
View ArticleRe : Liquibase commandline: diff
Hi,I'm trying to understand the problem by reading the source from github.Looking at the repo [1], it seems line 66 mentionned in [2] can't trigger a NPE.Also tried reading the JdbcExecutor mentionned...
View ArticleRe : Avoid schema/catalog sql generation
I got what happened:When using DataBaseFactory#findCorrectDatabaseImplementation method, it binds schema/catalog from jdbc connection to liquibase.database.Database object.So I just changed my lookup...
View ArticleRollback script for packages
Hi Folks, I have a question on generating the rollback script for packages. How do I generate a rollback script for a oracle package to a previous state instead of dropping it? I am using the...
View ArticleGenerating rollback script for oracle packages
Hi Folks, I have a question on generating the rollback script for packages. How do I generate a rollback script for a oracle package to a previous state instead of dropping it? I am using the...
View ArticleDelimeter in migration sql.
I am generating a migration sql script using the liquibase-maven-plugin with goal "updateSQL". Now I would like to use a custom delimeter in the generated script ("[go]" instead of the standard ";").Is...
View ArticleBug CORE-1236 should be reopened?
Hi,I am working with liquibase on an Oracle database (11.2.0.1.0). Among the changes between two DB, we have added index on foreign keys which are not mentionned in the DIFF.We are at version 3.1.1 so...
View ArticleRe : Bug CORE-1236 should be reopened?
So your two database both have foreign keys but only one has an index on the FK. Are you running diff or diffChangeLog?Nathan
View Article