MySQL 5.5 doesn't support "type" table option, instead it uses ENGINE option.
Below shell script to change schema/mysql.sql to newer format.
Below shell script to change schema/mysql.sql to newer format.
Code:
[COLOR=#000000]sed 's/type=InnoDB/ENGINE=InnoDB/g' schema/mysql.sql > /tmp/mysql.sql rm schema/mysql.sql cp /tmp/mysql.sql schema/mysql.sql [/COLOR]


Comment