1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-24 14:48:09 +03:00
Files
mariadb/mysql-test/suite/innodb/t/help_url.test
Sergei Golubchik a9035be5b7 10.0-base merge
2013-04-15 15:09:22 +02:00

23 lines
561 B
Plaintext

#
# 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;