raymondrna Posted June 26, 2006 Share Posted June 26, 2006 [code] show index from vinyl;ERROR 2006: MySQL server has gone awayNo connection. Trying to reconnect...Connection id: 2986025Current database: records+-------+------------+------------+--------------+-------------+-----------+----- --------+----------+--------+----------+| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Card inality | Sub_part | Packed | Comment |+-------+------------+------------+--------------+-------------+-----------+----- --------+----------+--------+----------+| vinyl | 0 | PRIMARY | 1 | catalog | A | 1 | NULL | NULL | || vinyl | 1 | full_index | 1 | label | A | NULL | NULL | NULL | FULLTEXT || vinyl | 1 | full_index | 2 | title | A | NULL | NULL | NULL | FULLTEXT || vinyl | 1 | full_index | 3 | composer | A | NULL | NULL | NULL | FULLTEXT || vinyl | 1 | full_index | 4 | conducter | A | NULL | NULL | NULL | FULLTEXT || vinyl | 1 | full_index | 5 | performer | A | NULL | NULL | NULL | FULLTEXT |+-------+------------+------------+--------------+-------------+-----------+----- --------+----------+--------+----------+6 rows in set (0.01 sec)mysql> select * from vinyl -> where match (title) against ('Symphony');ERROR:mysql>mysql> select * from vinyl -> where match (title) against ('Symphony');ERROR 2006: MySQL server has gone awayNo connection. Trying to reconnect...Connection id: 2986047Current database: recordsERROR 1191: Can't find FULLTEXT index matching the column listmysql>[/code]what's going on?I ask mysql to describe the index and it tells me it's there. Do a match, and match tells me it's not?I'm guessing this is a simple syntax mistake, but I'm new with mysql and it seems like what I'm going should just work.:PThanks for the help and your infinite wisdom!! Quote Link to comment https://forums.phpfreaks.com/topic/12945-fulltext-index-matching-not-working/ Share on other sites More sharing options...
fenway Posted June 26, 2006 Share Posted June 26, 2006 That is indeed quite strange... should be just fine; post your SHOW CREATE TABLE output here, and I'll try it on my end. Quote Link to comment https://forums.phpfreaks.com/topic/12945-fulltext-index-matching-not-working/#findComment-49744 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.