摘要: 1,创建符合条件的A,B表和数据 create table IF not EXISTS A (id int auto_increment primary key);create table IF not EXISTS B (id int auto_increment primary key); in 阅读全文
posted @ 2019-05-08 20:50 石砾 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 今天在生产环境发现一个ArrayIndexOutOfBounds的问题,经过排查,发现是group_concat拼接的字符串太长,超过了1024,导致报错。 我们可以通过 : SET [SESSION | GLOBAL] group_concat_max_len = 10240; 设置group_c 阅读全文
posted @ 2019-05-08 19:17 石砾 阅读(794) 评论(0) 推荐(0) 编辑