No errors on the constaint tests, but still 7 failures and 2 errors on the
datatypes test..
So don't know what's wrong if that works for you...
Eg on the testBitWithDefault :
<database name="roundtriptest">
<table name="roundtrip">
<column name="pk" primaryKey="true" required="true" type="INTEGER" default="0"
autoIncrement="false"/>
<column name="value" primaryKey="false" required="true" type="BIT" default="FALSE"
autoIncrement="false"/>
</table>
</database>
Actual model:
<database name="roundtriptest">
<table name="roundtrip">
<column name="pk" primaryKey="true" required="true" type="INTEGER" size="11" default="0"
autoIncrement="false"/>
<column name="value" primaryKey="false" required="true" type="TINYINT" size="1" default="0"
autoIncrement="false"/>
</table>
</database>
Mvgr,
Martin
Thomas Dudziak wrote:
On 1/4/06, Martin van den Bemt <[EMAIL PROTECTED]> wrote:
No problem. Curious how much you can get running (currently have 18 failures
and 3 errors) on the
datatypestest.
MySql should work now, at least locally all 53 tests pass for me.
regards,
Tom