Re : 3.5.0 release date
I have just tested and all of my integration tests pass.Thanks!However, 6 unit tests fail during the compilation of liquibase-core:Tests in error:...
View ArticleRe : 3.5.0 release date
Those tests failures were caused by my change, but I did fix them a little bit ago. Can you make sure you have the newest version from master?Nathan
View ArticleRe : 3.5.0 release date
I re-tested again. I am pretty sure that I used the latest from the liquibase github repo as my change in addChangeSet function was not there anymore :).Btw: I had one unit test failure now so I used...
View ArticleHow to get oracle session parameters to apply to all changesets.
We have the need to set an oracle session parameter whenever we run ddl updates. We have 2 databases where the data is replicated and have different character sets defined but we have to run our ddl...
View ArticleRe : Firebird remarks
Unfortunately support for remarks is currently a bit hit and miss. The fix should make it into 4.0, but for now you'll have to use <sql> tags.Nathan
View ArticleRe : Jenkins Liquibase Runner Plugin
Very cool. Thanks for building it. Let me know if there there are any liquibase bugs you run into or features that would help you out.Nathan
View ArticleRe : Notification when liquidbase executes insert
There are few listener-style APIs in liquibase. The main one you would probably be interested in is liquibase.changelog.visitor.ChangeExecListener. You can set that on the liquibase.Liquibase object or...
View ArticleRe : liquibase and java Serializable
That is a good question. In theory it should be fine, I've just not put in the various transient etc. flags for things that are instance-specific and shouldn't be auto-serialized. It would probably be...
View ArticleRe : can I have precondition on my rollback tag
Currently you cannot specify a precondition tag in rollback. The idea is to have rollback very straightforward and non-complex so you know exactly what is going to happen.I see your problem, though. I...
View ArticleRe : Rollback runs if precondition fails
I just ran into this issue. I'm trying to make my change sets work for both MySQL and Postgres. The updates work great, but on rollback it tries to run the MySQL rollbacks which fail because the...
View Articlecolon in changeset id in sql format
Hi all,I' m wondering is it there a possibility to use colon in id attribute while using sql changeset formati.e. I want to have id like id01:02 But it seems than sql changelog parser interprets the...
View ArticleRe : colon in changeset id in sql format
There isn't currently an escape character, unfortunately. You can't have a colon in the idNathan
View ArticleRe : Rollback runs if precondition fails
What version of liquibase are you running?Nathan
View ArticleRe : liquibase and java Serializable
I have been using Wicket for so long that I take it for granted that Wicket is serialization centric and haven't thought about the the theory of it in a long time.This somewhat dated page nicely...
View ArticleLoad Data from CSV where one column value is derived from a sql
Hi,I am trying to load data from csv file.One of my insert columns value with type as NUMBER maxValue is the result of the sql 'select max( id) from myTable'.All the other values are picked up from...
View Articleorg.hibernate.dialect.Dialect not found
I am using hibernate-core-4.2.7.SP1-redhat-3.jar for Hibernate. When I run Liquibase diffDatabaseToChangeLog from ant I get the warnings below. I tried Liquibase jars liquibase-hibernate4.2-3.5.jar...
View ArticleValidate only with Spring integration
When we use hibernate in production we specify "validate" as the DDL command, so that if we deploy an app it will check that the database is in the expected state, and if it isn't, then it'll throw an...
View ArticleIntegration with Dropwizard and JUnit
HiI've been asking on stackoverflow, but there's no response (here)I want to automatize my DAO tests, so I want to use the liquibase schema to create a tables for me. Also, as I didn't see the other...
View ArticleRe : Validate only with Spring integration
I am not familiar with the Spring integration, but on the command line there is a status command that returns the number of changesets that need to be run....
View ArticleRe : Integration with Dropwizard and JUnit
See comments, etc. at Stack Overflow link.Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View Article