mysql索引前缀长度在ubuntu中自动设置

时间:2013-10-02 22:15:30

标签: mysql macos ubuntu indexing mysqldump

我有以下MyISAM表

mysql> show create table product_desc\G
*************************** 1. row ***************************
       Table: product_desc
Create Table: CREATE TABLE `product_desc` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned DEFAULT '0',
  `title` varchar(100) DEFAULT NULL,
  `description` varchar(5000) DEFAULT NULL,
  PRIMARY KEY (`id`),
  FULLTEXT KEY `title` (`title`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
1 row in set (0.00 sec)

但是当我想用以下命令改变表(添加索引)时,我收到了错误。

mysql> ALTER TABLE product_desc ADD INDEX `description` (`description`);
ERROR 1071 (42000): Specified key was too long; max key length is 1000 bytes

奇怪的是,这只发生在Mac OSX上,而不是发生在我的ubuntu服务器上。所以我检查了我服务器上的结果表并得到了这个:

mysql> show indexes from product_desc;
+------------------------+------------+-------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table        | Non_unique | Key_name    | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+------------------------+------------+-------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| product_desc |          0 | PRIMARY     |            1 | id          | A         |           5 |     NULL | NULL   |      | BTREE      |         |               |
| product_desc |          1 | description |            1 | description | A         |           5 |      333 | NULL   | YES  | BTREE      |         |               |
| product_desc |          1 | title       |            1 | title       | NULL      |           1 |     NULL | NULL   | YES  | FULLTEXT   |         |               |
| product_desc |          1 | title       |            2 | description | NULL      |           1 |     NULL | NULL   | YES  | FULLTEXT   |         |               |
+------------------------+------------+-------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
6 rows in set (0.00 sec)

有趣的是,description索引会自动获得333前缀长度。所以我的问题是它是如何发生的那样?我需要在MacOS my.cnf上设置任何配置变量才能得到相同的结果吗?

1 个答案:

答案 0 :(得分:0)

您的列大小太大,无法编入索引。

前缀最长可达1000个字节(InnoDB表为767个字节)。

这是MySql限制,不是特定于操作系统(但特定于存储引擎)

您能否在MacOS上显示表格详细信息。

MySQL reference