Well that is good news and gives me something specific to look for. Thanks.
Looks like InnoDB it is so I need to run some test installs by the look of it!
Here is the other table create SQL:
CREATE TABLE `wp_sftopics` ( `topic_id` bigint(20) NOT NULL AUTO_INCREMENT, `topic_name` varchar(200) NOT NULL, `topic_date` datetime NOT NULL, `topic_status` int(4) NOT NULL DEFAULT '0', `forum_id` bigint(20) NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `topic_pinned` smallint(1) NOT NULL DEFAULT '0', `topic_opened` bigint(20) NOT NULL DEFAULT '0', `topic_slug` varchar(200) NOT NULL, `post_id` bigint(20) DEFAULT NULL, `post_count` mediumint(8) DEFAULT '0', `post_id_held` bigint(20) DEFAULT NULL, `post_count_held` mediumint(8) DEFAULT '0', PRIMARY KEY (`topic_id`), KEY `forum_id_idx` (`forum_id`), KEY `topic_slug_idx` (`topic_slug`), KEY `user_id_idx` (`user_id`), KEY `post_id_idx` (`post_id`) );
hopefully will not cause any problem either…