Re : Liquibase with DB2 on Z/os
Hi,I forked the codebase and added the support for DB2 z/OS.Please see:https://github.com/MarkusBernhardt/liquibaseIt at least works for me with DB2 z/OS 9.7 and 10.1.Please note I only tested reverse...
View ArticleWhat is the schema path to include from a jar into current project
Hi, I've a jar which has it's own changelog.xml under src/main/resources. And i want to include that chagnelog.xml into my current project. Example :Project1 ->...
View Articleliquiunit 1.0.0-SNAPSHOT
Hello; I've recently put up my Liquiunit project at Github.Liquiunit contains JUnit Rules for setting up H2 in-memory databases that can work well with parallel Maven Surefire/JUnit tests, Rules for...
View ArticleRe : Add the possibility to set defaultCharsetName
Someone else said they can't see where to create an issue either. I'm looking into that...Nathan
View ArticleRe : Add the possibility to set defaultCharsetName
Separate testing shows the button there. Perhaps a temporary jira bug that is resolved?Nathan
View ArticleRe : Infomix create table primary key
The comment was left from when I was splitting up code, apparently.What is the changeSet you are having a problem with?The "Create Issue" button seems to be showing on the top toolbar in jira. Possibly...
View ArticleRe : PreConditions not working with outputfile
It's not written because the precondition execution is more of a runtime check that something that will alter the state of the database. Adding the SELECT statements didn't seem to make sense, plus...
View ArticleRe : liquiunit 1.0.0-SNAPSHOT
Actually, with respect, dbUnit deals with test data much better. But using Liquibase to set up the "default data"—the data that defines your "empty" production system—in your test system too, in the...
View ArticleRe : diff usage: dialect path
There may be an issue with the hibernate extension and liquibase 3.1.1. I'm looking into that.Nathan
View ArticleRe : What is the schema path to include from a jar into current project
I asked that question on stackoverflow. But didn't get the correct answer.
View ArticleRe : calling pragma before anything else ?
I can't think of a hook within liquibase that will run SQL before anything else. Depending on how you are calling Liquibase, you could call PRAGMA on the jdbc Connection that is passed to liquibase....
View ArticleRe : varchar handling for reverse engineered Oracle tables
Currently there is not a way to do it automatically. You would have to manually edit the generated file.Better cross-database data type handling is on the short list for future features but hasn't been...
View ArticleRe : calling pragma before anything else ?
Thanks for your answer. I am calling liquibase from a c++ program by calling an external java process : java -jar liquibase --classpath=sqlitejdbc.jar --driver=org.sqlite.JDBC...
View ArticleRe : Questions about liquibase core classes
I created https://liquibase.jira.com/browse/CORE-1771 to track the change to ChangeSet.getChanges to make it modifyable.You asked your new question in a separate thread, right? I don't think it's bad...
View ArticleRe : Liquibase with DB2 on Z/os
Warning: I know very little about DB2 on Z/os so some of these questions are basic, bear with me.There is an existing extension for DB2 on iSeries at https://github.com/liquibase/liquibase-db2i. That...
View ArticleRe : What is the schema path to include from a jar into current project
I'll try to answer on thereNathan
View ArticleRe : What is the schema path to include from a jar into current project
Sure, thank you Nathan.
View ArticleRe : dropAll fails on RedShift
Yes, foreign keys are informal, only to help the optimizer. So as we're talking about dropAll, anyway all the tables will be deleted, so,it doesn't matter in which order you delete them: redshift won't...
View ArticleRe : Add the possibility to set defaultCharsetName
Nathan, thanks for the reply !I'm using 3.1.1.Yes, there were improvements.Checksums now are calculated the same across Win and Linux. The calculation uses UtfBomStripperInputStream instead of...
View ArticleRe : Infomix create table primary key
<createTable tableName="tableName"> <column autoIncrement="true" name="id" type="bigint"> <constraints nullable="false" primaryKey="true" />...
View Article