I am unable to set the system variable table_type. When I try to do so I get the following error.
mysql> SET table_type=InnoDB;
ERROR 1193 (HY000): Unknown system variable 'table_type'
I see that "table_type" is not listed when I do a "SHOW VARIABLES". Is this a setup issue?
To install mysql I just did a "sudo yum install mysql mysql-server mysql-libs" on Amazon EC2 instance.
From the documentation:
Which in turn says:
Therefore you should use
SET default_storage_engine=InnoDB
, which FWIW is the default since MySQL 5.5.5.pls try this one