--sourceinclude/have_innodb.inc--echo#--echo# Bug#46760: Fast ALTER TABLE no longer works for InnoDB--echo#CREATETABLEt1(aINT)ENGINE=InnoDB;INSERTINTOt1VALUES(1);--echo# By using --enable_info and verifying that number of affected--echo# rows is 0 we check that this ALTER TABLE is really carried--echo# out as "fast/online" operation, i.e. without full-blown data--echo# copying.--echo#--echo# I.e. info for the below statement should normally look like:--echo#--echo# affected rows: 0--echo# info: Records: 0 Duplicates: 0 Warnings: 0--enable_infoALTERTABLEt1ALTERCOLUMNaSETDEFAULT10;--disable_infoSHOWCREATETABLEt1;DROPTABLEt1;--echo#--echo# MySQL Bug#39200: optimize table does not recognize --echo# ROW_FORMAT=COMPRESSED--echo#CREATETABLEt1(aINT)ROW_FORMAT=compressed;SHOWCREATETABLEt1;OPTIMIZETABLEt1;SHOWCREATETABLEt1;DROPTABLEt1;--echoEndof5.1tests