1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Added initial sorting in order to make test case repeatable.

This commit is contained in:
ram@gw.mysql.r18.ru
2004-08-12 16:02:12 +05:00
parent 494a3b0559
commit a8d3ad5e59

View File

@@ -97,6 +97,7 @@ select 1; -- To test that the previous command didn't cause problems
insert into mysql.user (host, user) values ('localhost', 'test11');
insert into mysql.db (host, db, user, select_priv) values
('localhost', 'a%', 'test11', 'Y'), ('localhost', 'ab%', 'test11', 'Y');
alter table mysql.db order by db asc;
flush privileges;
show grants for test11@localhost;
alter table mysql.db order by db desc;