Commit c4f94b70 authored by unknown's avatar unknown

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.
parent 10397af9
...@@ -350,4 +350,5 @@ SELECT * FROM t1; ...@@ -350,4 +350,5 @@ SELECT * FROM t1;
a b a b
1 root@localhost 1 root@localhost
DROP DATABASE mysqltest1; DROP DATABASE mysqltest1;
DROP USER untrusted@localhost;
End of 5.1 tests End of 5.1 tests
...@@ -276,5 +276,6 @@ INSERT INTO t1 VALUES (1,USER()); ...@@ -276,5 +276,6 @@ INSERT INTO t1 VALUES (1,USER());
SELECT * FROM t1; SELECT * FROM t1;
connection default; connection default;
DROP DATABASE mysqltest1; DROP DATABASE mysqltest1;
DROP USER untrusted@localhost;
--echo End of 5.1 tests --echo End of 5.1 tests
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment