GBase 8a MPP集群支持全文索引,但在一个字段上只能创建一个FULLTEXT,如果创建多个,则会报这个错误:Too many keys specified; max 1 keys allowed。
目录导航
报错样例
ERROR 1702 (HY000): gcluster table error: Too many keys specified; max 1 keys allowed.
原因
一个列,创建多个全文索引FULLTEXT。
gbase> create fulltext index idx_memo on t1(memo) with parser part4;
Query OK, 0 rows affected (Elapsed: 00:00:00.16)
Records: 0 Duplicates: 0 Warnings: 0
gbase> create fulltext index idx_name on t1(memo) with parser part2;
ERROR 1702 (HY000): gcluster table error: Too many keys specified; max 1 keys allowed.
gbase>
解决方案
看是否列名写错了,不要在1个列上重复创建全文索引。