[MySQL] 업데이트 이후 에러 발생([ERROR] Incorrect definition of table mysql.colu…
- 12-08
- 91,000 회
- 0 건
[code]
Dec 08 10:28:23 xxxxx [ERROR] Incorrect definition of table mysql.column_stats: expected column 'hist_type' at position 9 to have type enum('SINGLE_PREC_HB','DOUBLE_PREC_HB','JSON_HB'), found type enum('SINGLE_PREC_HB','DOUBLE_PREC_HB').
Dec 08 10:28:23 xxxxx [ERROR] Incorrect definition of table mysql.column_stats: expected column 'histogram' at position 10 to have type longblob, found type varbinary(255).
[/code]
업데이트 이후 위와 같은 오류가 발생함
아래 명령으로 오류 해결
[code]
mysql_upgrade -u root -p
[/code]