1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug#20166 mysql-test-run.pl does not test system privilege tables creation

- Add test of bootstrap mode
 - Make mysqld return error if bootstrap failed
This commit is contained in:
msvensson@pilot.blaudden
2007-02-20 12:48:15 +01:00
parent 00ee20edaa
commit bcd368fcfb
4 changed files with 71 additions and 3 deletions

View File

@ -0,0 +1,8 @@
drop table if exists t1;
drop table t1;
drop table t1;
ERROR 42S02: Unknown table 't1'
set @my_max_allowed_packet= @@max_allowed_packet;
set global max_allowed_packet=100*@@max_allowed_packet;
set global max_allowed_packet=@my_max_allowed_packet;
drop table t1;