From c4f94b70bdaa26e9b8782771f079a2dc3c1594d6 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 12 Nov 2007 11:29:55 +0100 Subject: [PATCH] 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. --- mysql-test/r/mysqlbinlog.result | 1 + mysql-test/t/mysqlbinlog.test | 1 + 2 files changed, 2 insertions(+) diff --git a/mysql-test/r/mysqlbinlog.result b/mysql-test/r/mysqlbinlog.result index 287fbd7e7f3..1deb9401aa1 100644 --- a/mysql-test/r/mysqlbinlog.result +++ b/mysql-test/r/mysqlbinlog.result @@ -350,4 +350,5 @@ SELECT * FROM t1; a b 1 root@localhost DROP DATABASE mysqltest1; +DROP USER untrusted@localhost; End of 5.1 tests diff --git a/mysql-test/t/mysqlbinlog.test b/mysql-test/t/mysqlbinlog.test index 8635bbfab87..edaf07a64db 100644 --- a/mysql-test/t/mysqlbinlog.test +++ b/mysql-test/t/mysqlbinlog.test @@ -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