ob 的mysql 模式租户,分区有global 索引的表为什么不支持insert ignore呢?
我测试了一下没有问题啊
| t1 | CREATE TABLE `t1` (
`id` int(11) DEFAULT NULL,
`name` char(20) DEFAULT NULL,
`age` int(11) DEFAULT NULL,
KEY `i_id` (`id`) BLOCK_SIZE 16384 GLOBAL 这里有一个global index
执行ignore
obclient> insert ignore into t1 values(3,'a',3);
Query OK, 1 row affected (0.00 sec)
分区的表不行
能否发一下复现sql