CDI issue (OpenEJB / OpenWebBeans)
Has anyone been able to use liquibase 3 with OpenEJB? It looks like the weld-specific excludes in beans.xml cause OpenEJB to reject the jar and fail the CDI container start-up. Ignoring elements in...
View ArticleRe : Anyone come across this deployment issue when deploying to a JEE container?
Do you have a class that provides all the CDILiquibase dependencies? Check out the liquibase-core source and look at liquibase.integration.cdi.CDITestProducer as an example.djh
View ArticleRe : potential feature - ignore checksum
Hello,We have come across a similar issue but in the context of databases being moved to different RDBMS. Our changesets are parameterized with properties whose value depend on the actual database, and...
View ArticleMake service loading mechanism more configurable
Hello,We are using liquibase to handle db migration procedures inside our product and we have run into some trouble with the service loading mechanism. Our environment is rather complex: The execution...
View ArticleLiquibase - NVarcharType on Derby Fails
Derby does not have support for NVarchar. Currently the execution of NVarchar against Derby fails with "Caused by: ERROR 0A000: Feature not implemented: NATIONAL CHAR VARYING".It could be worked around...
View ArticlePackage CDI support as a separate module
I'd like to suggest removing the CDI support from liquibase-core and packaging it as a separate module. The CDI code seems to work only with JBoss Weld and is effectively a poison-pill when deployed...
View ArticleRe : Liquibase - NVarcharType on Derby Fails
I modified the downloaded source with the fix above and it has resolved the issue on Derby for NVARCHAR types.
View ArticleMaven + Hibernate
Hi,I am trying to use Maven plugin diff goal with my Hibernate mappings. I have been able to make it but I encountered several issues:some goals are missing in the documentation...
View ArticleTriggers and procedures
I've been looking for refactorings to add new triggers and stored procedures, but unable to do so.Isn't this possible? If so, is this feature planned?
View ArticleRe : Triggers and procedures
To edit myself, there is a refactoring for procedures, but why not for triggers?
View ArticlecreateSequence support with Derby
Hello all,I am trying to use Liquibase to build an embedded Derby database which includes some sequences. With the most recent stable release, it appears that the createSequence tag is not supported...
View ArticleIs there any way to get changelog parameters inside my Change extension
Is there any way to get changelog parameters inside my Change extension
View Articleis there any way to get changelog parameters inside my LoadDataChange extension
is there any way to get changelog parameters inside my LoadDataChange extension
View ArticleNullPointerException
Hi,I use Liquibase to generate ddl programmatically, like this:Database database = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(new JdbcConnection(conn));liquibase = new...
View ArticleFunctionality to avoid relying on LockService
I have a usecase where I want to export DDL sql to file, and hence the locking functionality (which requires lock tables) is not required.I think the ability to turn off locking would be nice for other...
View ArticleFacing issue with updateSQL goal in maven
I am trying to generate SQL for my changesets (XML format) when I execute maven compilation for my project.I am able to get migrate.sql created in project but only with some commented line of update...
View ArticleBug in SybaseDatabase
The code in SybaseDatabase#isSystemObject bugs out with a NPE. I have to change it to this for it to work: @Override public boolean isSystemObject(DatabaseObject example) { return false;...
View ArticleRe : updateSQL (sql output) without DATABASECHANGELOG/DATABASECHANGELOGLOCK...
Is there at least a way to accomplish this programmatically?Thanks.
View ArticleMySQL loadUpdateData using literal values for update
I am having an issue with the loadUpdateData change with MySQL 5.6.12. I am using Liquibase 3.0.2. I have a CSV file that is initially being loaded with a loadData change - which works fine. I am...
View ArticleRe : IncludeAll: Could not find directory
I can reproduce the same problem with includeAll tag in Liquibase version 3.0.2 when trying to execute LB scripts upon web application startup on Tomcat 7 64bit under Windows 7 deployed as a war file....
View Article