informix drop first - alter tables wrong syntax
Hi,I've tried to drop the informix database with the drop first flag (SpringLiquibase) and get the following error:ALTER TABLE "informix"."tablename" DROP CONSTRAINT "contraintname": A syntax error has...
View Articlehow to deal with plugins/module architecture?
I have application that uses few modules (maven modules), like:myapp /module1 /module2 /module3how can I split changelogs so that every single module has changelogs of data model that is specific...
View ArticleWriting liquibase for IN sql statement
I have sql statement likeUPDATE MY_TASK SET TASK_STATUS="DONE" WHERE TASK_ID in('101', '212', '345',......); How can I write liquibase change set for this<changeSet author="aman"...
View ArticleWrite preConditions in output file
PreConditions work as a separated transaction whose decide if ChangeSet will run. But when I am only using Liquibase.update(context, writer) to generate output scripts, preConditions tag is not being...
View ArticleRe : Questions about liquibase core classes
Yes, here it is: http://forum.liquibase.org/#Topic/49382000001023029
View ArticleRe : What is the schema path to include from a jar into current project
I found the solution for this problem.Use maven-dependency-plugin to unpack the project2 jar and then use maven-resources-plugin to extract the project2.changelog.xml into...
View ArticleRe : dropAll fails on RedShift
The diff uses the snapshot logic to find objects to drop. I committed a change to the extension to make foreign key snapshots a no-op. It fixes the dropAll but it makes diffs between redshift and...
View ArticleRe : Infomix create table primary key
Thanks. I created https://liquibase.jira.com/browse/CORE-1775 to track the bug fix.What is your jira username? I'll look into why you don't see the create button.Nathan
View ArticleRe : how to deal with plugins/module architecture?
Yes, it should work just fine. Liquibase needs a single changelog file to point to, but from that changelog file you can <include> other changelogs by their classpath-relative paths. So if you...
View ArticleRe : Write preConditions in output file
I think I partly answered this on another thread, right? Liquibase doesn't try to output preconditions because there is not necessarily SQL that goes with the precondition and the java code is...
View ArticleRe : Enhancing Main.java to help other programs call it.
Those seeem like good changes. Send a pull request and I can get them in.I do want to improve the ability to integrate with Liquibase, the current Main method is definitely not ideal. My current...
View ArticleRe : What is the schema path to include from a jar into current project
Good. Thanks for the follow upNathan
View ArticleRe : Add the possibility to set defaultCharsetName
Thanks, I created https://liquibase.jira.com/browse/CORE-1776 to track the change. I'll try it out and see if there are other chagnes that need to be made as well.Nathan
View ArticleRe : Infomix create table primary key
Your user was not a part of any permission groups. Not sure why not, but I added you to the correct group. You should be able to create issues now.Nathan
View ArticleRe : Enhancing Main.java to help other programs call it.
I'll go ahead and do a pull request. Would you prefer the change in 3.1.x or master? 3.1.x will make it available sooner, but it could lead to merge conflicts when you try to merge into master on the...
View ArticleTag changset in sql format
Hi,is it possible to tag changeset in sql format? I found out it is posible in other format http://www.liquibase.org/documentation/changes/tag_database.html but sql format is missing.Thank you.
View ArticleRe : Infomix create table primary key
Now i can see the the create issue button but after click I got the message that I don't have the permission to create new issues.
View ArticleRe : calling pragma before anything else ?
Ok, thanks for your answer.We would like to limit as much as possible the java development part. Do you think it would be possible to use JNI to create a standard sqlite-jdbc driver, then call the...
View Article