… ran it with a trivial WHERE clause: mysql> select count(*) from t where a = current_date; (Pop quiz: do I need SQL… query. If I add another WHERE clause, mysql> select count(*) from t where a = current_date and left(a, 10) = ’2008-10… that the MySQL optimizer chooses to apply the clause to indexes. (However, as I found out some time ago, some date functions are…
Post: InnoDB Full-text Search in MySQL 5.6 (part 1)
….ibd -rw-rw—-. 1 mysql mysql 98304 Feb 20 16:09 FTS_00000000000000ad_STOPWORDS.ibd -rw-rw—-. 1 mysql mysql 98304 Feb 20 15… had a full-text index on it, and then I create one, the following warning is generated: mysql> alter table dir_test… index and associated processing for an InnoDB table.” The documentation also tells us that we can keep our FT indexes up to date…

