datagrip使用mysqldump导出sql出现(1109)错误
1. 软件环境
- 本地mysql版本为8.0
- 服务器mysql版本为5.7
2. 遇到的问题
使用datagrip IDE导出服务器中的表结构时(如图),datagrip提示错误:
mysqldump: Couldn't execute 'SELECT COLUMN_NAME, JSON_EXTRACT(HISTOGRAM, '$."number-of-buckets-specified"') FROM information_schema.COLUMN_STATISTICS WHERE SCHEMA_NAME = 'ais' AND TABLE_NAME = 'address_area';': Unknown table 'COLUMN_STATISTICS' in information_schema (1109)
3. 问题解析
因为本地环境是mysql8.0, 在 MySQL 8.x 之前,information_schema 数据库中没有 COLUMN_STATISTICS 数据表,使用8.0的mysqlclint访问5.7版本,就会报错
4. 解决方案
在上图的导出界面最下方添加 --column-statistics=0 即可忽略这个表,如图
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。