Merge kpettersson@bk-internal.mysql.com:/home/bk/mysql-5.1-runtime
into adventure.(none):/home/thek/Development/cpp/mysql-5.1-runtime
This commit is contained in:
commit
400aec95f7
@ -1651,10 +1651,11 @@ a (select count(*) from t2)
|
|||||||
4 0
|
4 0
|
||||||
drop table t1,t2;
|
drop table t1,t2;
|
||||||
DROP DATABASE IF EXISTS bug30269;
|
DROP DATABASE IF EXISTS bug30269;
|
||||||
|
FLUSH STATUS;
|
||||||
CREATE DATABASE bug30269;
|
CREATE DATABASE bug30269;
|
||||||
USE bug30269;
|
USE bug30269;
|
||||||
CREATE TABLE test1 (id int, name varchar(23));
|
CREATE TABLE test1 (id int, name varchar(23));
|
||||||
CREATE VIEW view1 AS SELECT id FROM test1;
|
CREATE VIEW view1 AS SELECT * FROM test1;
|
||||||
INSERT INTO test1 VALUES (5, 'testit');
|
INSERT INTO test1 VALUES (5, 'testit');
|
||||||
GRANT SELECT (id) ON TABLE bug30269.test1 TO 'bug30269'@'localhost';
|
GRANT SELECT (id) ON TABLE bug30269.test1 TO 'bug30269'@'localhost';
|
||||||
GRANT SELECT ON TABLE bug30269.view1 TO 'bug30269'@'localhost';
|
GRANT SELECT ON TABLE bug30269.view1 TO 'bug30269'@'localhost';
|
||||||
@ -1663,15 +1664,19 @@ USE bug30269;
|
|||||||
show status like 'Qcache_queries_in_cache';
|
show status like 'Qcache_queries_in_cache';
|
||||||
Variable_name Value
|
Variable_name Value
|
||||||
Qcache_queries_in_cache 0
|
Qcache_queries_in_cache 0
|
||||||
|
# Select statement not stored in query cache because of column privileges.
|
||||||
SELECT id FROM test1 WHERE id>2;
|
SELECT id FROM test1 WHERE id>2;
|
||||||
id
|
id
|
||||||
5
|
5
|
||||||
SELECT id FROM view1 WHERE id>2;
|
|
||||||
id
|
|
||||||
5
|
|
||||||
show status like 'Qcache_queries_in_cache';
|
show status like 'Qcache_queries_in_cache';
|
||||||
Variable_name Value
|
Variable_name Value
|
||||||
Qcache_queries_in_cache 0
|
Qcache_queries_in_cache 0
|
||||||
|
SELECT id FROM view1 WHERE id>2;
|
||||||
|
id
|
||||||
|
5
|
||||||
|
show status like 'Qcache_queries_in_cache';
|
||||||
|
Variable_name Value
|
||||||
|
Qcache_queries_in_cache 1
|
||||||
DROP DATABASE bug30269;
|
DROP DATABASE bug30269;
|
||||||
DROP USER 'bug30269'@'localhost';
|
DROP USER 'bug30269'@'localhost';
|
||||||
set GLOBAL query_cache_type=default;
|
set GLOBAL query_cache_type=default;
|
||||||
|
@ -1256,10 +1256,11 @@ disconnect user3;
|
|||||||
--disable_warnings
|
--disable_warnings
|
||||||
DROP DATABASE IF EXISTS bug30269;
|
DROP DATABASE IF EXISTS bug30269;
|
||||||
--enable_warnings
|
--enable_warnings
|
||||||
|
FLUSH STATUS;
|
||||||
CREATE DATABASE bug30269;
|
CREATE DATABASE bug30269;
|
||||||
USE bug30269;
|
USE bug30269;
|
||||||
CREATE TABLE test1 (id int, name varchar(23));
|
CREATE TABLE test1 (id int, name varchar(23));
|
||||||
CREATE VIEW view1 AS SELECT id FROM test1;
|
CREATE VIEW view1 AS SELECT * FROM test1;
|
||||||
INSERT INTO test1 VALUES (5, 'testit');
|
INSERT INTO test1 VALUES (5, 'testit');
|
||||||
GRANT SELECT (id) ON TABLE bug30269.test1 TO 'bug30269'@'localhost';
|
GRANT SELECT (id) ON TABLE bug30269.test1 TO 'bug30269'@'localhost';
|
||||||
GRANT SELECT ON TABLE bug30269.view1 TO 'bug30269'@'localhost';
|
GRANT SELECT ON TABLE bug30269.view1 TO 'bug30269'@'localhost';
|
||||||
@ -1268,7 +1269,9 @@ connect (bug30269, localhost, bug30269,,);
|
|||||||
connection bug30269;
|
connection bug30269;
|
||||||
USE bug30269;
|
USE bug30269;
|
||||||
show status like 'Qcache_queries_in_cache';
|
show status like 'Qcache_queries_in_cache';
|
||||||
|
--echo # Select statement not stored in query cache because of column privileges.
|
||||||
SELECT id FROM test1 WHERE id>2;
|
SELECT id FROM test1 WHERE id>2;
|
||||||
|
show status like 'Qcache_queries_in_cache';
|
||||||
SELECT id FROM view1 WHERE id>2;
|
SELECT id FROM view1 WHERE id>2;
|
||||||
show status like 'Qcache_queries_in_cache';
|
show status like 'Qcache_queries_in_cache';
|
||||||
|
|
||||||
|
@ -3238,8 +3238,19 @@ Query_cache::process_and_count_tables(THD *thd, TABLE_LIST *tables_used,
|
|||||||
The grant.want_privileges flag was set to 1 in the
|
The grant.want_privileges flag was set to 1 in the
|
||||||
check_grant() function earlier if the TABLE_LIST object
|
check_grant() function earlier if the TABLE_LIST object
|
||||||
had any associated column privileges.
|
had any associated column privileges.
|
||||||
|
|
||||||
|
We need to check that the TABLE_LIST object isn't part
|
||||||
|
of a VIEW definition because we want to be able to cache
|
||||||
|
views.
|
||||||
|
|
||||||
|
TODO: Although it is possible to cache views, the privilege
|
||||||
|
check on view tables always fall back on column privileges
|
||||||
|
even if there are more generic table privileges. Thus it isn't
|
||||||
|
currently possible to retrieve cached view-tables unless the
|
||||||
|
client has the super user privileges.
|
||||||
*/
|
*/
|
||||||
if (tables_used->grant.want_privilege)
|
if (tables_used->grant.want_privilege &&
|
||||||
|
tables_used->belong_to_view == NULL)
|
||||||
{
|
{
|
||||||
DBUG_PRINT("qcache", ("Don't cache statement as it refers to "
|
DBUG_PRINT("qcache", ("Don't cache statement as it refers to "
|
||||||
"tables with column privileges."));
|
"tables with column privileges."));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user