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

BUG#31611 (Security risk with BINLOG statement):

Adding missing drop of user created for test case.


mysql-test/r/mysqlbinlog.result:
  Result file change.
mysql-test/t/mysqlbinlog.test:
  Dropping user that was added earlier in the test.
This commit is contained in:
unknown
2007-11-12 11:29:55 +01:00
parent 10397af9c5
commit c4f94b70bd
2 changed files with 2 additions and 0 deletions

View File

@@ -276,5 +276,6 @@ INSERT INTO t1 VALUES (1,USER());
SELECT * FROM t1;
connection default;
DROP DATABASE mysqltest1;
DROP USER untrusted@localhost;
--echo End of 5.1 tests