summaryrefslogtreecommitdiff
path: root/mysql-test/r/ps_grant.result
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/r/ps_grant.result
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/r/ps_grant.result')
-rw-r--r--mysql-test/r/ps_grant.result9
1 files changed, 5 insertions, 4 deletions
diff --git a/mysql-test/r/ps_grant.result b/mysql-test/r/ps_grant.result
index 4792a781419..8fbb06fe61b 100644
--- a/mysql-test/r/ps_grant.result
+++ b/mysql-test/r/ps_grant.result
@@ -75,10 +75,6 @@ commit ;
show grants for second_user@localhost ;
ERROR 42000: There is no such grant defined for user 'second_user' on host 'localhost'
drop database mysqltest;
-prepare stmt4 from ' show full processlist ';
-execute stmt4;
-Id User Host db Command Time State Info
-number root localhost test Query time NULL show full processlist
prepare stmt3 from ' grant all on test.t1 to drop_user@localhost
identified by ''looser'' ';
ERROR HY000: This command is not supported in the prepared statement protocol yet
@@ -91,3 +87,8 @@ revoke all privileges on test.t1 from drop_user@localhost ;
prepare stmt3 from ' drop user drop_user@localhost ';
ERROR HY000: This command is not supported in the prepared statement protocol yet
drop user drop_user@localhost;
+prepare stmt4 from ' show full processlist ';
+execute stmt4;
+Id User Host db Command Time State Info
+number root localhost test Query time NULL show full processlist
+deallocate prepare stmt4;