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
c67c49ff
Commit
c67c49ff
authored
Jun 13, 2007
by
dkatz@damien-katzs-computer.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge damien-katzs-computer.local:/Users/dkatz/mysql50
into damien-katzs-computer.local:/Users/dkatz/50_win
parents
87e7709f
1481bfc8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
0 deletions
+32
-0
mysql-test/r/query_cache.result
mysql-test/r/query_cache.result
+7
-0
mysql-test/t/query_cache.test
mysql-test/t/query_cache.test
+24
-0
sql/item_create.cc
sql/item_create.cc
+1
-0
No files found.
mysql-test/r/query_cache.result
View file @
c67c49ff
...
@@ -1405,7 +1405,14 @@ Only MyISAM tables support collections 1
...
@@ -1405,7 +1405,14 @@ Only MyISAM tables support collections 1
Function MATCH ... AGAINST() is used to do a search 1
Function MATCH ... AGAINST() is used to do a search 1
Full-text search in MySQL implements vector space model 1
Full-text search in MySQL implements vector space model 1
drop function change_global;
drop function change_global;
drop table t1;
set GLOBAL query_cache_type=default;
set GLOBAL query_cache_type=default;
set GLOBAL query_cache_limit=default;
set GLOBAL query_cache_limit=default;
set GLOBAL query_cache_min_res_unit=default;
set GLOBAL query_cache_min_res_unit=default;
set GLOBAL query_cache_size= default;
set GLOBAL query_cache_size= default;
set GLOBAL query_cache_size=1000000;
create table t1 (a char);
insert into t1 values ('c');
a
drop table t1;
set GLOBAL query_cache_size= default;
mysql-test/t/query_cache.test
View file @
c67c49ff
...
@@ -965,9 +965,33 @@ delimiter ;|
...
@@ -965,9 +965,33 @@ delimiter ;|
select
*
,
change_global
()
from
t1
;
select
*
,
change_global
()
from
t1
;
drop
function
change_global
;
drop
function
change_global
;
drop
table
t1
;
set
GLOBAL
query_cache_type
=
default
;
set
GLOBAL
query_cache_type
=
default
;
set
GLOBAL
query_cache_limit
=
default
;
set
GLOBAL
query_cache_limit
=
default
;
set
GLOBAL
query_cache_min_res_unit
=
default
;
set
GLOBAL
query_cache_min_res_unit
=
default
;
set
GLOBAL
query_cache_size
=
default
;
set
GLOBAL
query_cache_size
=
default
;
#
# Bug #28897 UUID() returns non-unique values when query cache is enabled
#
set
GLOBAL
query_cache_size
=
1000000
;
create
table
t1
(
a
char
);
insert
into
t1
values
(
'c'
);
let
$q1
=
`select UUID(), a from t1`
;
let
$q2
=
`select UUID(), a from t1`
;
# disabling the logging of the query because the UUIDs are different each run.
--
disable_query_log
eval
select
a
from
t1
where
"
$q1
"
=
"
$q2
"
;
--
enable_query_log
drop
table
t1
;
set
GLOBAL
query_cache_size
=
default
;
# End of 5.0 tests
# End of 5.0 tests
sql/item_create.cc
View file @
c67c49ff
...
@@ -418,6 +418,7 @@ Item *create_func_unhex(Item* a)
...
@@ -418,6 +418,7 @@ Item *create_func_unhex(Item* a)
Item
*
create_func_uuid
(
void
)
Item
*
create_func_uuid
(
void
)
{
{
current_thd
->
lex
->
safe_to_cache_query
=
0
;
return
new
Item_func_uuid
();
return
new
Item_func_uuid
();
}
}
...
...
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