merged
This commit is contained in:
commit
ebdb0b91db
@ -149,7 +149,7 @@ select "user3";
|
|||||||
user3
|
user3
|
||||||
user3
|
user3
|
||||||
select * from t1;
|
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;
|
select a from t1;
|
||||||
a
|
a
|
||||||
1
|
1
|
||||||
|
@ -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_set : Bug#20294: Instance manager tests fail randomly
|
||||||
im_options_unset : 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
|
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
|
ndb_backup_print : Bug#32357: ndb_backup_print test fails sometimes in pushbuild
|
||||||
rpl_log_pos : Bug#8693 Test 'rpl_log_pos' fails sometimes
|
rpl_log_pos : Bug#8693 Test 'rpl_log_pos' fails sometimes
|
||||||
kill : Bug#29149 Test "kill" fails on Windows
|
kill : Bug#29149 Test "kill" fails on Windows
|
||||||
|
@ -88,7 +88,7 @@ select a from t1;
|
|||||||
select c from t1;
|
select c from t1;
|
||||||
select * from mysqltest.t1,test.t1;
|
select * from mysqltest.t1,test.t1;
|
||||||
--replace_result 127.0.0.1 localhost
|
--replace_result 127.0.0.1 localhost
|
||||||
--error 1142
|
--error ER_TABLEACCESS_DENIED_ERROR
|
||||||
select * from t2;
|
select * from t2;
|
||||||
show status like "Qcache_queries_in_cache";
|
show status like "Qcache_queries_in_cache";
|
||||||
show status like "Qcache_hits";
|
show status like "Qcache_hits";
|
||||||
@ -99,17 +99,17 @@ connect (user3,localhost,mysqltest_3,,mysqltest,$MASTER_MYPORT,$MASTER_MYSOCK);
|
|||||||
connection user3;
|
connection user3;
|
||||||
select "user3";
|
select "user3";
|
||||||
--replace_result 127.0.0.1 localhost
|
--replace_result 127.0.0.1 localhost
|
||||||
--error 1143
|
--error ER_TABLEACCESS_DENIED_ERROR
|
||||||
select * from t1;
|
select * from t1;
|
||||||
select a from t1;
|
select a from t1;
|
||||||
--replace_result 127.0.0.1 localhost
|
--replace_result 127.0.0.1 localhost
|
||||||
--error 1143
|
--error ER_COLUMNACCESS_DENIED_ERROR
|
||||||
select c from t1;
|
select c from t1;
|
||||||
--replace_result 127.0.0.1 localhost
|
--replace_result 127.0.0.1 localhost
|
||||||
--error 1142
|
--error ER_TABLEACCESS_DENIED_ERROR
|
||||||
select * from t2;
|
select * from t2;
|
||||||
--replace_result 127.0.0.1 localhost
|
--replace_result 127.0.0.1 localhost
|
||||||
--error 1143
|
--error ER_COLUMNACCESS_DENIED_ERROR
|
||||||
select mysqltest.t1.c from test.t1,mysqltest.t1;
|
select mysqltest.t1.c from test.t1,mysqltest.t1;
|
||||||
show status like "Qcache_queries_in_cache";
|
show status like "Qcache_queries_in_cache";
|
||||||
show status like "Qcache_hits";
|
show status like "Qcache_hits";
|
||||||
@ -120,7 +120,7 @@ connect (user4,localhost,mysqltest_1,,*NO-ONE*,$MASTER_MYPORT,$MASTER_MYSOCK);
|
|||||||
connection user4;
|
connection user4;
|
||||||
select "user4";
|
select "user4";
|
||||||
show grants;
|
show grants;
|
||||||
--error 1046
|
--error ER_NO_DB_ERROR
|
||||||
select a from t1;
|
select a from t1;
|
||||||
# The following query is not cached before (different database)
|
# The following query is not cached before (different database)
|
||||||
select * from mysqltest.t1,test.t1;
|
select * from mysqltest.t1,test.t1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user