mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
![monty@mysql.com](/assets/img/avatar_default.png)
(Fixes core dump in rpl_failed_optimize.test) Ensure we end active transcations if we do an admin command (like optimize, repair etc)
8 lines
268 B
Text
8 lines
268 B
Text
drop database if exists events_test;
|
|
drop database if exists events_test2;
|
|
drop table if exists t1;
|
|
CREATE TABLE t1 (
|
|
Period smallint(4) unsigned zerofill DEFAULT '0000' NOT NULL,
|
|
Varor_period smallint(4) unsigned DEFAULT '0' NOT NULL
|
|
) ENGINE=example;
|
|
drop table t1;
|