mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
cc28eda62e
rename s/MYSQL_MAJOR_VERSION/MYSQL_VERSION_MAJOR/ and s/MYSQL_MINOR_VERSION/MYSQL_VERSION_MINOR/ to match 5.6
9 lines
448 B
Text
9 lines
448 B
Text
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;
|
|
select * from t1;
|
|
ERROR HY000: Got error -1 "Internal error < 0 (Not system error)" from storage engine
|
|
InnoDB: http://dev.mysql.com/doc/refman/10.0/en/innodb-troubleshooting.html
|
|
drop table t1;
|
|
set global innodb_file_per_table=default, innodb_file_format=default;
|