summaryrefslogtreecommitdiff
path: root/mysql-test/t/ps_grant.test
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2005-05-14 14:42:25 +0400
committerunknown <konstantin@mysql.com>2005-05-14 14:42:25 +0400
commitbb2b8120615f48cd17682aa810e54b20a7002c77 (patch)
tree52e9d6e0dc18f59182b2915861e763972d5eea2b /mysql-test/t/ps_grant.test
parent86826f137ade6150198f500c9d55771b55264ce5 (diff)
downloadmariadb-git-bb2b8120615f48cd17682aa810e54b20a7002c77.tar.gz
More post-merge fixes.
mysql-test/t/ps_grant.test: More post-merge fixes: show processlist must be last.
Diffstat (limited to 'mysql-test/t/ps_grant.test')
-rw-r--r--mysql-test/t/ps_grant.test11
1 files changed, 7 insertions, 4 deletions
diff --git a/mysql-test/t/ps_grant.test b/mysql-test/t/ps_grant.test
index f23582633b4..0b33a2dadde 100644
--- a/mysql-test/t/ps_grant.test
+++ b/mysql-test/t/ps_grant.test
@@ -112,10 +112,6 @@ show grants for second_user@localhost ;
drop database mysqltest;
-# Tested here simply so it is not tested with embedded server
-prepare stmt4 from ' show full processlist ';
---replace_column 1 number 6 time 3 localhost
-execute stmt4;
## grant/revoke + drop user
--error 1295
@@ -131,3 +127,10 @@ revoke all privileges on test.t1 from drop_user@localhost ;
prepare stmt3 from ' drop user drop_user@localhost ';
drop user drop_user@localhost;
+# This test must be the last one, otherwise it may produce extra
+# rows in the processlist under high load.
+# Tested here simply so it is not tested with embedded server
+prepare stmt4 from ' show full processlist ';
+--replace_column 1 number 6 time 3 localhost
+execute stmt4;
+deallocate prepare stmt4;