From: Mark Addison Date: Wed, 25 May 2005 11:56:24 +0000 (+0000) Subject: Fixed InnoDB table type errors (Chris Hilton patch) X-Git-Tag: v0.11008~560 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=528c54436dfed028c30ef58bd8c8e82c415d3503;p=dbsrgits%2FSQL-Translator.git Fixed InnoDB table type errors (Chris Hilton patch) --- diff --git a/t/28xml-xmi-parser-sqlfairy.t b/t/28xml-xmi-parser-sqlfairy.t index 69943eb..bc8f616 100644 --- a/t/28xml-xmi-parser-sqlfairy.t +++ b/t/28xml-xmi-parser-sqlfairy.t @@ -57,6 +57,9 @@ is_deeply( \@tblnames, table_ok( $scma->get_table("Customer"), { name => "Customer", + extra => { + mysql_table_type => 'InnoDB' + }, fields => [ { name => "name", @@ -99,6 +102,9 @@ table_ok( $scma->get_table("Customer"), { table_ok( $scma->get_table("ContactDetails_Customer"), { name => "ContactDetails_Customer", + extra => { + mysql_table_type => 'InnoDB' + }, fields => [ { name => "ContactDetailsID", @@ -143,6 +149,9 @@ table_ok( $scma->get_table("ContactDetails_Customer"), { table_ok( $scma->get_table("ContactDetails"), { name => "ContactDetails", + extra => { + mysql_table_type => 'InnoDB' + }, fields => [ { name => "address", @@ -180,6 +189,9 @@ table_ok( $scma->get_table("ContactDetails"), { table_ok( $scma->get_table("Order"), { name => "Order", + extra => { + mysql_table_type => 'InnoDB' + }, fields => [ { name => "invoiceNumber", @@ -232,6 +244,9 @@ table_ok( $scma->get_table("Order"), { table_ok( $scma->get_table("OrderLine"), { name => "OrderLine", + extra => { + mysql_table_type => 'InnoDB' + }, fields => [ { name => "lineNumber",