summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/help_url.test
blob: 075d1180649488806e48767a9ccab54a2bcb19ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# MDEV-4273 MYSQL_VERSION_MAJOR.MYSQL_VERSION_MINOR not replaced
#
--source include/have_innodb.inc
--source include/not_embedded.inc

call mtr.add_suppression('InnoDB: Error');

set global innodb_file_per_table=1, innodb_file_format=Barracuda;

create table t1 (i int) engine=InnoDB;
alter table t1 discard tablespace;
--error ER_GET_ERRNO
select * from t1;
perl;
@ARGV = ("$ENV{MYSQLTEST_VARDIR}/log/mysqld.1.err");
print ((grep {/innodb-troubleshooting/} <>)[-1]);
EOF

drop table t1;

set global innodb_file_per_table=default, innodb_file_format=default;