diff options
author | unknown <paul@ice.snake.net> | 2004-06-15 22:18:20 -0500 |
---|---|---|
committer | unknown <paul@ice.snake.net> | 2004-06-15 22:18:20 -0500 |
commit | 3165c7deda48c89f98f21204616376aa3eebfb3a (patch) | |
tree | 55d5ba340ed500c61110e640666ad2cde8553489 /mysql-test/r/grant_cache.result | |
parent | 1926d4ee3429f18ba7acd3e3b7436596fceb7f4b (diff) | |
download | mariadb-git-3165c7deda48c89f98f21204616376aa3eebfb3a.tar.gz |
Language/consistency edits to error messages
and affected test results.
Diffstat (limited to 'mysql-test/r/grant_cache.result')
-rw-r--r-- | mysql-test/r/grant_cache.result | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/grant_cache.result b/mysql-test/r/grant_cache.result index 3020b281f80..b890f2e454e 100644 --- a/mysql-test/r/grant_cache.result +++ b/mysql-test/r/grant_cache.result @@ -134,7 +134,7 @@ a b c a 1 1 1 test.t1 2 2 2 test.t1 select * from t2; -ERROR 42000: select command denied to user: 'mysqltest_2'@'localhost' for table 't2' +ERROR 42000: select command denied to user 'mysqltest_2'@'localhost' for table 't2' show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 6 @@ -148,17 +148,17 @@ select "user3"; user3 user3 select * from t1; -ERROR 42000: select command denied to user: 'mysqltest_3'@'localhost' for column 'b' in table 't1' +ERROR 42000: select command denied to user 'mysqltest_3'@'localhost' for column 'b' in table 't1' select a from t1; a 1 2 select c from t1; -ERROR 42000: SELECT command denied to user: 'mysqltest_3'@'localhost' for column 'c' in table 't1' +ERROR 42000: SELECT command denied to user 'mysqltest_3'@'localhost' for column 'c' in table 't1' select * from t2; -ERROR 42000: select command denied to user: 'mysqltest_3'@'localhost' for table 't2' +ERROR 42000: select command denied to user 'mysqltest_3'@'localhost' for table 't2' select mysqltest.t1.c from test.t1,mysqltest.t1; -ERROR 42000: SELECT command denied to user: 'mysqltest_3'@'localhost' for column 'c' in table 't1' +ERROR 42000: SELECT command denied to user 'mysqltest_3'@'localhost' for column 'c' in table 't1' show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 6 |