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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
ccee4f84
Commit
ccee4f84
authored
Aug 12, 2003
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed query cache intercommunication with innodb engine
mysql-test/r/innodb_cache.result: new results
parent
20a2f6c5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
4 deletions
+48
-4
mysql-test/r/innodb_cache.result
mysql-test/r/innodb_cache.result
+4
-4
sql/sql_cache.cc
sql/sql_cache.cc
+42
-0
sql/sql_cache.h
sql/sql_cache.h
+2
-0
No files found.
mysql-test/r/innodb_cache.result
View file @
ccee4f84
...
@@ -10,7 +10,7 @@ a
...
@@ -10,7 +10,7 @@ a
3
3
show status like "Qcache_queries_in_cache";
show status like "Qcache_queries_in_cache";
Variable_name Value
Variable_name Value
Qcache_queries_in_cache
1
Qcache_queries_in_cache
0
drop table t1;
drop table t1;
commit;
commit;
set autocommit=1;
set autocommit=1;
...
@@ -24,7 +24,7 @@ a
...
@@ -24,7 +24,7 @@ a
3
3
show status like "Qcache_queries_in_cache";
show status like "Qcache_queries_in_cache";
Variable_name Value
Variable_name Value
Qcache_queries_in_cache
1
Qcache_queries_in_cache
0
drop table t1;
drop table t1;
commit;
commit;
create table t1 (a int not null) type=innodb;
create table t1 (a int not null) type=innodb;
...
@@ -90,14 +90,14 @@ a
...
@@ -90,14 +90,14 @@ a
2
2
show status like "Qcache_queries_in_cache";
show status like "Qcache_queries_in_cache";
Variable_name Value
Variable_name Value
Qcache_queries_in_cache
3
Qcache_queries_in_cache
1
show status like "Qcache_hits";
show status like "Qcache_hits";
Variable_name Value
Variable_name Value
Qcache_hits 4
Qcache_hits 4
commit;
commit;
show status like "Qcache_queries_in_cache";
show status like "Qcache_queries_in_cache";
Variable_name Value
Variable_name Value
Qcache_queries_in_cache
3
Qcache_queries_in_cache
1
drop table if exists t1;
drop table if exists t1;
CREATE TABLE t1 (id int(11) NOT NULL auto_increment, PRIMARY KEY (id)) TYPE=InnoDB;
CREATE TABLE t1 (id int(11) NOT NULL auto_increment, PRIMARY KEY (id)) TYPE=InnoDB;
select count(*) from t1;
select count(*) from t1;
...
...
sql/sql_cache.cc
View file @
ccee4f84
...
@@ -769,9 +769,18 @@ void Query_cache::store_query(THD *thd, TABLE_LIST *tables_used)
...
@@ -769,9 +769,18 @@ void Query_cache::store_query(THD *thd, TABLE_LIST *tables_used)
STRUCT_LOCK
(
&
structure_guard_mutex
);
STRUCT_LOCK
(
&
structure_guard_mutex
);
if
(
query_cache_size
==
0
)
if
(
query_cache_size
==
0
)
{
STRUCT_UNLOCK
(
&
structure_guard_mutex
);
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
}
DUMP
(
this
);
DUMP
(
this
);
if
(
ask_handler_allowance
(
thd
,
tables_used
))
{
STRUCT_UNLOCK
(
&
structure_guard_mutex
);
DBUG_VOID_RETURN
;
}
/* Key is query + database + flag */
/* Key is query + database + flag */
if
(
thd
->
db_length
)
if
(
thd
->
db_length
)
{
{
...
@@ -2548,6 +2557,39 @@ TABLE_COUNTER_TYPE Query_cache::is_cacheable(THD *thd, uint32 query_len,
...
@@ -2548,6 +2557,39 @@ TABLE_COUNTER_TYPE Query_cache::is_cacheable(THD *thd, uint32 query_len,
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
}
}
/*
Check handler allowence to cache query with this tables
SYNOPSYS
Query_cache::ask_handler_allowance()
thd - thread handlers
tables_used - tables list used in query
RETURN
0 - caching allowed
1 - caching disallowed
*/
my_bool
Query_cache
::
ask_handler_allowance
(
THD
*
thd
,
TABLE_LIST
*
tables_used
)
{
DBUG_ENTER
(
"Query_cache::is_cacheable"
);
for
(;
tables_used
;
tables_used
=
tables_used
->
next
)
{
TABLE
*
table
=
tables_used
->
table
;
if
(
!
handler
::
caching_allowed
(
thd
,
table
->
table_cache_key
,
table
->
key_length
,
table
->
file
->
table_cache_type
()))
{
DBUG_PRINT
(
"qcache"
,
(
"Handler does not allow caching for %s.%s"
,
tables_used
->
db
,
tables_used
->
alias
));
thd
->
lex
.
safe_to_cache_query
=
0
;
// Don't try to cache this
DBUG_RETURN
(
1
);
}
}
DBUG_RETURN
(
0
);
}
/*****************************************************************************
/*****************************************************************************
Packing
Packing
...
...
sql/sql_cache.h
View file @
ccee4f84
...
@@ -345,6 +345,8 @@ class Query_cache
...
@@ -345,6 +345,8 @@ class Query_cache
TABLE_COUNTER_TYPE
is_cacheable
(
THD
*
thd
,
uint32
query_len
,
char
*
query
,
TABLE_COUNTER_TYPE
is_cacheable
(
THD
*
thd
,
uint32
query_len
,
char
*
query
,
LEX
*
lex
,
TABLE_LIST
*
tables_used
,
LEX
*
lex
,
TABLE_LIST
*
tables_used
,
uint8
*
tables_type
);
uint8
*
tables_type
);
static
my_bool
ask_handler_allowance
(
THD
*
thd
,
TABLE_LIST
*
tables_used
);
public:
public:
Query_cache
(
ulong
query_cache_limit
=
ULONG_MAX
,
Query_cache
(
ulong
query_cache_limit
=
ULONG_MAX
,
...
...
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