diff --git a/t/lib/samples/SchemaIterator/mysql-user-ddl-5.0.txt b/t/lib/samples/SchemaIterator/mysql-user-ddl-5.0.txt index d7c6095f..65e70a94 100644 --- a/t/lib/samples/SchemaIterator/mysql-user-ddl-5.0.txt +++ b/t/lib/samples/SchemaIterator/mysql-user-ddl-5.0.txt @@ -37,6 +37,6 @@ CREATE TABLE `user` ( `max_updates` int(11) unsigned NOT NULL default '0', `max_connections` int(11) unsigned NOT NULL default '0', `max_user_connections` int(11) unsigned NOT NULL default '0', - PRIMARY KEY (`Host`,`User`) + PRIMARY KEY (`Host`,`User`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges' diff --git a/t/lib/samples/tables/sakila.actor-5.0 b/t/lib/samples/tables/sakila.actor-5.0 index b2451585..0039927a 100644 --- a/t/lib/samples/tables/sakila.actor-5.0 +++ b/t/lib/samples/tables/sakila.actor-5.0 @@ -3,6 +3,6 @@ CREATE TABLE `actor` ( `first_name` varchar(45) NOT NULL, `last_name` varchar(45) NOT NULL, `last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, - PRIMARY KEY (`actor_id`), + PRIMARY KEY (`actor_id`), KEY `idx_actor_last_name` (`last_name`) ) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8