summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/system_tables.test
blob: 172628790f8669c6476dae69a7e61884f1027464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--source include/have_innodb.inc

#
# MDEV-10775 System table in InnoDB format allowed in MariaDB could lead to crash
#
alter table mysql.time_zone_name engine=InnoDB;
create table envois3 (starttime datetime) engine=InnoDB;
insert envois3 values ('2008-08-11 22:43:00');
--source include/restart_mysqld.inc
select convert_tz(starttime,'UTC','Europe/Moscow') starttime from envois3;
drop table envois3;
alter table mysql.time_zone_name engine=Aria;