So I'm seeing some very odd behavior when trying to do searches against WP_TERMS.
Using a simple query:
SELECT * FROM wp_terms WHERE MATCH (name) AGAINST ($keywords IN BOOLEAN MODE)
returns varied results. When I use 'landscape' as the search term, I get results. When I use something like 'tv', I get nothing.
Any ideas? I haven't added any new indexes to the table, or so I'm guessing (maybe a plugin added some...) - just the three:
PRIMARY | PRIMARY
slug | UNIQUE
name | INDEX
Thanks!