I am optimizing some innodb tables in MySQL, so I ran procedure analsye() to see what the recommendations were.
The results recommended tinytext instead of varchar(255) for all the fields that were previously set up as varchar(255)
Is there a performance gain to be had by using tinytext? I am only concerned about speed here, not size.