… knows Innodb tables is clustered by primary key in the sense it would not be faster to do external filesort than to do lookups in primary key order: mysql> explain select * from innodb…
Post: InnoDB Full-text Search in MySQL 5.6 (part 1)
… `dir_test_innodb` ( `id` int(10) unsigned NOT NULL, `full_name` varchar(100) DEFAULT NULL, `details` text, PRIMARY KEY (`id`), FULLTEXT KEY `full_name` (`full_name`,`details`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 We also have identical tables created in 5.5…

