2014-07-27 21:02:00 +02:00
|
|
|
install plugin innodb soname 'ha_innodb';
|
|
|
|
Warnings:
|
|
|
|
Warning 1105 Cannot enable tc-log at run-time. XA features of InnoDB are disabled
|
|
|
|
select engine,support,transactions,xa from information_schema.engines where engine='innodb';
|
|
|
|
engine support transactions xa
|
|
|
|
InnoDB YES YES NO
|
2014-07-29 09:09:52 +02:00
|
|
|
create table t1 (a int) engine=innodb;
|
|
|
|
start transaction;
|
|
|
|
insert t1 values (1);
|
|
|
|
insert t1 values (2);
|
|
|
|
commit;
|
2014-10-15 22:42:08 +02:00
|
|
|
show status like 'Handler_prepare';
|
|
|
|
Variable_name Value
|
|
|
|
Handler_prepare 0
|
2014-07-29 09:09:52 +02:00
|
|
|
drop table t1;
|
2014-07-27 21:02:00 +02:00
|
|
|
uninstall plugin innodb;
|
2015-07-21 11:12:58 +02:00
|
|
|
Warnings:
|
|
|
|
Warning 1620 Plugin is busy and will be uninstalled on shutdown
|