diff options
author | unknown <anozdrin/alik@quad.opbmk> | 2008-03-22 11:01:31 +0300 |
---|---|---|
committer | unknown <anozdrin/alik@quad.opbmk> | 2008-03-22 11:01:31 +0300 |
commit | 9965de17bab9c84472c3dc8c92f22c7d98da8f87 (patch) | |
tree | fdd478099bd88f85447e022e19fa1db27c474160 /mysql-test/r/sp-security.result | |
parent | d05f6b9fb8a5c02ef27390c34ebe97c26dda7923 (diff) | |
download | mariadb-git-9965de17bab9c84472c3dc8c92f22c7d98da8f87.tar.gz |
Fix result files (Bug#21854).
mysql-test/r/information_schema_db.result:
Update result file.
mysql-test/r/sp-security.result:
Update result file.
mysql-test/r/trigger_notembedded.result:
Update result file.
mysql-test/r/view_grant.result:
Update result file.
Diffstat (limited to 'mysql-test/r/sp-security.result')
-rw-r--r-- | mysql-test/r/sp-security.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/sp-security.result b/mysql-test/r/sp-security.result index 93503e68cd1..cf26f0076d7 100644 --- a/mysql-test/r/sp-security.result +++ b/mysql-test/r/sp-security.result @@ -357,10 +357,10 @@ ERROR 42000: Access denied; you need the SUPER privilege for this operation use mysqltest; CREATE DEFINER='a @ b @ c'@localhost PROCEDURE wl2897_p3() SELECT 3; Warnings: -Note 1449 The user specified as a definer ('a @ b @ c'@'localhost') is invalid or not registered +Note 1449 The user specified as a definer ('a @ b @ c'@'localhost') does not exist CREATE DEFINER='a @ b @ c'@localhost FUNCTION wl2897_f3() RETURNS INT RETURN 3; Warnings: -Note 1449 The user specified as a definer ('a @ b @ c'@'localhost') is invalid or not registered +Note 1449 The user specified as a definer ('a @ b @ c'@'localhost') does not exist ---> connection: con1root use mysqltest; @@ -420,9 +420,9 @@ DROP USER mysqltest_1@localhost; ---> connection: mysqltest_2_con use mysqltest; CALL bug13198_p1(); -ERROR HY000: The user specified as a definer ('mysqltest_1'@'localhost') is invalid or not registered +ERROR HY000: The user specified as a definer ('mysqltest_1'@'localhost') does not exist SELECT bug13198_f1(); -ERROR HY000: The user specified as a definer ('mysqltest_1'@'localhost') is invalid or not registered +ERROR HY000: The user specified as a definer ('mysqltest_1'@'localhost') does not exist ---> connection: root DROP USER mysqltest_2@localhost; |