summaryrefslogtreecommitdiff
path: root/mysql-test/r/sp-security.result
diff options
context:
space:
mode:
authorunknown <serg@sergbook.mysql.com>2004-12-31 17:59:43 +0100
committerunknown <serg@sergbook.mysql.com>2004-12-31 17:59:43 +0100
commit31c4511d1794079f3951d741901cbd4440da4e5c (patch)
treeb4fa4913d9b45efc61bcb30697c3a80e9ab4f07a /mysql-test/r/sp-security.result
parentb99bea6704299399c84bd8374ef7f248ff9570c5 (diff)
downloadmariadb-git-31c4511d1794079f3951d741901cbd4440da4e5c.tar.gz
post-merge
Diffstat (limited to 'mysql-test/r/sp-security.result')
-rw-r--r--mysql-test/r/sp-security.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/sp-security.result b/mysql-test/r/sp-security.result
index 365368873fa..d7078d5087d 100644
--- a/mysql-test/r/sp-security.result
+++ b/mysql-test/r/sp-security.result
@@ -32,7 +32,7 @@ select db1_secret.db();
db1_secret.db()
db1_secret
select * from db1_secret.t1;
-ERROR 42000: select command denied to user 'user1'@'localhost' for table 't1'
+ERROR 42000: SELECT command denied to user 'user1'@'localhost' for table 't1'
create procedure db1_secret.dummy() begin end;
ERROR 42000: Access denied for user 'user1'@'localhost' to database 'db1_secret'
drop procedure db1_secret.dummy;
@@ -42,7 +42,7 @@ select db1_secret.db();
db1_secret.db()
db1_secret
select * from db1_secret.t1;
-ERROR 42000: select command denied to user ''@'localhost' for table 't1'
+ERROR 42000: SELECT command denied to user ''@'localhost' for table 't1'
create procedure db1_secret.dummy() begin end;
ERROR 42000: Access denied for user ''@'localhost' to database 'db1_secret'
drop procedure db1_secret.dummy;
@@ -92,7 +92,7 @@ flush privileges;
use db2;
create procedure p () insert into t2 values (1);
call p();
-ERROR 42000: insert command denied to user 'user1'@'localhost' for table 't2'
+ERROR 42000: INSERT command denied to user 'user1'@'localhost' for table 't2'
use db2;
call p();
ERROR 42000: execute command denied to user 'user2'@'localhost' for routine 'db2.p'