1. 错误原因
2. 解决步骤
在大字段上创建索引时,有时会碰到下面的错误
ERROR 1709 (HY000): Index column size too large. The maximum column size is 767 bytes.
[url=https://img.alicdn.com/tfscom/TB1cboSLVXXXXb7XXXXXXXXXXXX.png][/url]
Step 3. 修改现有表
对已经创建的表,通过下面的语句修改下表的 row_format 格式
alter
table <table_name> row_format=dynamic;
alter
table <table_name> row_format=compressed;