using column with name text is broken for HSQL
Description
Environment
Windows
Attachments
1
- 02 Oct 2013, 05:57 PM
Activity
Show:
Nathan Voxland October 4, 2013 at 11:38 PM
Hoping to have 3.0.6 out Monday
Nathan Voxland October 4, 2013 at 11:38 PM
Great, thanks for letting me know.
Thorsten Hoeger October 4, 2013 at 11:12 PM
I confirm that it works with 3.0.6-SNAPSHOT
Nathan Voxland October 4, 2013 at 10:05 PM
Working for me against 3.0.6 codebase. Probably fixed by an earlier change
After upgarding from 3.0.2 I got the attached error.
I tracked it down with git bisect to the following commit:
622236062a69cfe56997dcfffe2dc7b61a9305f0
The changelog part creating this table is:
<createTable tableName="document">
<column name="id" type="serial" autoIncrement="true">
<constraints primaryKey="true" nullable="false" />
</column>
<column name="tenant" type="int">
<constraints nullable="false" foreignKeyName="fkDocumentTenant" referencedTableName="tenant" referencedColumnNames="id" />
</column>
<column name="title" type="varchar(255)">
<constraints nullable="false" />
</column>
<column name="text" type="text" />
<column name="proposedresolution" type="text" />
<column name="file_id" type="int">
<constraints nullable="true" foreignKeyName="fkDocumentFile" referencedTableName="file" referencedColumnNames="id" />
</column>
</createTable>