# 実行
mysqldump --column-statistics=0 -u root -p -h [HOST] [DB] > dump.txt
# エラー
mysqldump: Couldn't execute 'SELECT COLUMN_NAME,
JSON_EXTRACT(HISTOGRAM, '$."number-of-buckets-specified"')
FROM information_schema.COLUMN_STATISTICS
WHERE SCHEMA_NAME = '[DB]' AND TABLE_NAME = 'action_histories';'
: Unknown table 'COLUMN_STATISTICS' in information_schema (1109)
--column-statistics=0
をパラメタ指定することで実行できるようになる`
mysqldump --column-statistics=0 -u root -p -h [HOST] [DB] > dump.txt