valueBoolean not working for H2 with addColumn in XML
Description
Environment
Windows 7, Eclipse Luna, H2 1.3.170, run-Jetty-run 8, XML-config
Activity
Show:
Nathan Voxland December 3, 2014 at 7:07 PM
I'm not able to replicate this issue with the 3.3.1. It may have been resolved with an earlier issue.
Cannot Reproduce
Details
Details
Created November 26, 2014 at 12:18 PM
Updated December 3, 2014 at 7:07 PM
Resolved December 3, 2014 at 7:07 PM
I'm trying to use valueBoolean in an XML-config file but it's not working and I suspect that valueBoolean is being ignored all togheter.
<changeSet author="1" id="add-boolean-value"> <addColumn catalogName="AAA" tableName="theTableName"> <column name="trueOrFalse" type="BOOLEAN" valueBoolean="true" defaultValueBoolean="true" /> </addColumn> </changeSet>
defaultValueBoolean="true"
defaultValueBoolean is working as expected and changes within the quotes are reflected in the column or returns errors if wrong.
valueBoolean="true"
valueBoolean however is not working, the values in the column is always FALSE after setting it to "true".
I can almost put anything within the quotes (except for some special chars) and it doesn't throw an error or change the values in the column.
Let me know if you need more information.