Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
ebdb0b91
Commit
ebdb0b91
authored
May 15, 2009
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
merged
parents
793bf595
8e72b449
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
8 deletions
+7
-8
mysql-test/r/grant_cache.result
mysql-test/r/grant_cache.result
+1
-1
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+0
-1
mysql-test/t/grant_cache.test
mysql-test/t/grant_cache.test
+6
-6
No files found.
mysql-test/r/grant_cache.result
View file @
ebdb0b91
...
...
@@ -149,7 +149,7 @@ 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 table 't1'
select a from t1;
a
1
...
...
mysql-test/t/disabled.def
View file @
ebdb0b91
...
...
@@ -16,7 +16,6 @@ im_daemon_life_cycle : Bug#20294: Instance manager tests fail randomly
im_options_set : Bug#20294: Instance manager tests fail randomly
im_options_unset : Bug#20294: Instance manager tests fail randomly
im_utils : Bug#20294: Instance manager tests fail randomly
grant_cache : Bug#32651: grant_cache.test fails
ndb_backup_print : Bug#32357: ndb_backup_print test fails sometimes in pushbuild
rpl_log_pos : Bug#8693 Test 'rpl_log_pos' fails sometimes
kill : Bug#29149 Test "kill" fails on Windows
mysql-test/t/grant_cache.test
View file @
ebdb0b91
...
...
@@ -88,7 +88,7 @@ select a from t1;
select
c
from
t1
;
select
*
from
mysqltest
.
t1
,
test
.
t1
;
--
replace_result
127.0
.
0.1
localhost
--
error
1142
--
error
ER_TABLEACCESS_DENIED_ERROR
select
*
from
t2
;
show
status
like
"Qcache_queries_in_cache"
;
show
status
like
"Qcache_hits"
;
...
...
@@ -99,17 +99,17 @@ connect (user3,localhost,mysqltest_3,,mysqltest,$MASTER_MYPORT,$MASTER_MYSOCK);
connection
user3
;
select
"user3"
;
--
replace_result
127.0
.
0.1
localhost
--
error
1143
--
error
ER_TABLEACCESS_DENIED_ERROR
select
*
from
t1
;
select
a
from
t1
;
--
replace_result
127.0
.
0.1
localhost
--
error
1143
--
error
ER_COLUMNACCESS_DENIED_ERROR
select
c
from
t1
;
--
replace_result
127.0
.
0.1
localhost
--
error
1142
--
error
ER_TABLEACCESS_DENIED_ERROR
select
*
from
t2
;
--
replace_result
127.0
.
0.1
localhost
--
error
1143
--
error
ER_COLUMNACCESS_DENIED_ERROR
select
mysqltest
.
t1
.
c
from
test
.
t1
,
mysqltest
.
t1
;
show
status
like
"Qcache_queries_in_cache"
;
show
status
like
"Qcache_hits"
;
...
...
@@ -120,7 +120,7 @@ connect (user4,localhost,mysqltest_1,,*NO-ONE*,$MASTER_MYPORT,$MASTER_MYSOCK);
connection
user4
;
select
"user4"
;
show
grants
;
--
error
1046
--
error
ER_NO_DB_ERROR
select
a
from
t1
;
# The following query is not cached before (different database)
select
*
from
mysqltest
.
t1
,
test
.
t1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment