Adding FULLTEXT to MyISAM table error.
Hi,
My problem occurs on the page 176 where I was just trying to add a FULLTEXT index to the Cds table. MyISAM is the default table type for the MySQL Server 4.1.13 (which I have installed on my windows based machine) and it's the only table type which supports FULLTEXT index type.
For some reason I'm receiving an error when executing the following statement:
mysql> CREATE TABLE cds(
-> intCdID SMALLINT UNSIGNED NOT NULL PRIMARY KEY,
-> txtCdName VARCHAR(40) NOT NULL
-> );
Query OK, 0 rows affected (0.06 sec)
mysql> ALTER TABLE cds
-> ADD FULLTEXT (txtCdName);
ERROR 1214 (HY000): The used table type doesn't support FULLTEXT indexes
Any idea what might cause this error?
Thanks,
|