-
The DifferenceEngine's JavaDoc ( http://xmlunit.sourceforge.net/api/org/custommonkey/xmlunit/DifferenceEngine.html ) indicates: "Nodes of other types (eg ENTITY_NODE) will be skipped."
This means that for example this test case fails:
assertXMLEqual("bla\r\nbla", "bla
\nbla");
I suppose this is because XmlUnit sees \r\n on one side and only \n on the other...
2008-01-22 15:50:18 UTC in XML Unit
-
I am using LiquiBase 1.4.1 and Microsoft SQL Server 2000.
The refactoring:
(notice the missing attribute tableName)
generates the SQL command:
DROP INDEX [null].MY_INDEX;
(notice the [null]).
The 'null' is correctly replaced by the value of the attribute 'tableName' in the refactoring when specified.
The attribue 'tableName' doesn't appear in...
2008-01-14 13:28:02 UTC in LiquiBase
-
When I try to the command "status" with the switch "--verbose", LiquiBase returns:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2
at liquibase.commandline.CommandLineMigrator.fixupArgs(CommandLineMigrat
or.java:136)
at liquibase.commandline.CommandLineMigrator.parseOptions(CommandLineMig
rator.java:333)
at...
2007-12-12 14:26:42 UTC in LiquiBase
-
Just to note that the problem also appeared with Microsoft SQL Server and is fixed with 2.6.2.
2007-12-04 10:14:09 UTC in SQuirreL SQL Client
-
When the option "SQL Result - limit rows" of the SQL tab in the new session configuration window is set to 100, a DELETE statement is also limited (only 100 rows are deleted). Unchecking the option solves the problem.
The problem doesn't seem to exist in SQuirreL 2.5.
2007-12-04 09:43:33 UTC in SQuirreL SQL Client
-
LiquiBase currently does not provide support for automatic rollback of the refactoring 'Insert Data'.
Couldn't it read the target table metadata to find its primary key, then generate a corresponding WHERE clause to delete the new row?.
2007-10-18 10:52:23 UTC in LiquiBase
-
Dropping default values is currently not supported in MS-SQL. An error message is displayed when rolling-back an and when using .
Rolling back an with a 'defaultValue' attribute produces an SQL error, since MS-SQL requires the default constraint to be dropped before dropping the column.
I currently need to write and tags as a...
2007-08-22 09:35:11 UTC in LiquiBase
-
When the command 'liquibase status' is applied to a database in which LiquiBase's tables do no exist (i.e. the database has never been migrated with LiquiBase), the command line migrator displays the following message and quit:
Migration Failed: java.lang.NullPointerException
LiquiBase version: 1.1.1.
2007-08-16 14:04:46 UTC in LiquiBase
-
I'm using LiquiBase 1.1.1 on Windows XP.
LiquiBase's documentation indicates that the option '--defaultsFile' of the Command Line Migrator can be used to override the default path to the option file liquibase.properties.
This option doesn't seem to be taken into account. I get the error message:
Exception in thread "main" liquibase.migrator.exception.CommandLineParsingExcept
ion: Could...
2007-08-16 13:39:04 UTC in LiquiBase
-
I'm trying to tag my database using the command line tool, but I get an error "Migration Failed: Did not tag database change log correctly".
It seems that LiquiBase can tag only if at least one changeset has been applied to the database.
I'm using SQL Server 2000 and LiquiBase 1.1.1.
The table DATABASECHANGELOG already existed (but was empty) when I made my tests.
2007-08-13 07:54:28 UTC in LiquiBase