Can there be TEXT/BLOB columns in a table without filesort in MySQL?

Posted by Tower on Stack Overflow See other posts from Stack Overflow or by Tower
Published on 2010-04-03T15:52:35Z Indexed on 2010/04/03 16:13 UTC
Read the original article Hit count: 97

Filed under:

Hi,

I'm working on a database program and I noticed that when I'm doing queries with tables that have TEXT/BLOB columns, MySQL will use temp tables and use filesort. I'm not entirely sure when and how this happens, but are there cases where MySQL does not use filesort when there are BLOB/TEXT columns? Like if the sort column is type of VARCHAR() with an index?

© Stack Overflow or respective owner

Related posts about mysql