1. 程式人生 > >MySQL5.5 升級到MySQL5.6的註意事項

MySQL5.5 升級到MySQL5.6的註意事項

ja

MySQL5.5 升級到MySQL5.6的註意事項


1、如果表有時間字段,在升級之後該表必須rebuild一次,才能執行online ddl.


https://dev.mysql.com/doc/refman/5.6/en/upgrading-from-previous-series.html

解決方法:

mysql>alter table table_name force; #會鎖表

或者使用pt工具,優勢在於不鎖表,另外共有雲上環境也能使用pt-tools工具

# pt-online-schema-change --no-version-check --no-drop-old-table --execute --print --alter "force" h='',P=3306,u=root,p='',D='',t=''



MySQL5.5 升級到MySQL5.6的註意事項