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
1626c2d9
Commit
1626c2d9
authored
Mar 15, 2006
by
bell@book.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We should prohobit concurent read of inserting file in SP
because it can couse problem with Query cache (BUG#14767)
parent
819b629c
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
136 additions
and
23 deletions
+136
-23
mysql-test/r/query_cache_notembedded.result
mysql-test/r/query_cache_notembedded.result
+30
-0
mysql-test/t/query_cache_notembedded.test
mysql-test/t/query_cache_notembedded.test
+40
-0
sql/sql_insert.cc
sql/sql_insert.cc
+30
-21
sql/sql_parse.cc
sql/sql_parse.cc
+13
-0
sql/sql_yacc.yy
sql/sql_yacc.yy
+23
-2
No files found.
mysql-test/r/query_cache_notembedded.result
View file @
1626c2d9
...
@@ -314,4 +314,34 @@ drop procedure f2;
...
@@ -314,4 +314,34 @@ drop procedure f2;
drop procedure f3;
drop procedure f3;
drop procedure f4;
drop procedure f4;
drop table t1;
drop table t1;
reset query cache;
drop function if exists f1;
create table t1 (id int);
create function f1 ()
returns int
begin
declare i_var int;
set i_var = sleep(3);
insert into t1 values(3);
set i_var = sleep(3);
return 0;
end;|
select f1();
select sleep(4);
sleep(4)
0
select * from t1;
id
3
f1()
0
select * from t1;
id
3
reset query cache;
select * from t1;
id
3
drop table t1;
drop function f1;
set GLOBAL query_cache_size=0;
set GLOBAL query_cache_size=0;
mysql-test/t/query_cache_notembedded.test
View file @
1626c2d9
...
@@ -180,5 +180,45 @@ drop procedure f3;
...
@@ -180,5 +180,45 @@ drop procedure f3;
drop
procedure
f4
;
drop
procedure
f4
;
drop
table
t1
;
drop
table
t1
;
#
# bug#14767: INSERT in SF + concurrent SELECT with query cache
#
reset
query
cache
;
--
disable_warnings
drop
function
if
exists
f1
;
--
enable_warnings
create
table
t1
(
id
int
);
delimiter
|
;
create
function
f1
()
returns
int
begin
declare
i_var
int
;
set
i_var
=
sleep
(
3
);
insert
into
t1
values
(
3
);
set
i_var
=
sleep
(
3
);
return
0
;
end
;
|
delimiter
;
|
connect
(
con1
,
localhost
,
root
,,);
connect
(
con2
,
localhost
,
root
,,);
connection
con1
;
send
select
f1
();
connection
con2
;
select
sleep
(
4
);
select
*
from
t1
;
connection
con1
;
reap
;
connection
con2
;
# This gives wrong result i.e. 't' table seems to be empty
select
*
from
t1
;
reset
query
cache
;
select
*
from
t1
;
drop
table
t1
;
drop
function
f1
;
disconnect
con1
;
disconnect
con2
;
connection
default
;
set
GLOBAL
query_cache_size
=
0
;
set
GLOBAL
query_cache_size
=
0
;
sql/sql_insert.cc
View file @
1626c2d9
...
@@ -258,6 +258,7 @@ bool mysql_insert(THD *thd,TABLE_LIST *table_list,
...
@@ -258,6 +258,7 @@ bool mysql_insert(THD *thd,TABLE_LIST *table_list,
bool
log_on
=
(
thd
->
options
&
OPTION_BIN_LOG
)
||
bool
log_on
=
(
thd
->
options
&
OPTION_BIN_LOG
)
||
(
!
(
thd
->
security_ctx
->
master_access
&
SUPER_ACL
));
(
!
(
thd
->
security_ctx
->
master_access
&
SUPER_ACL
));
bool
transactional_table
,
joins_freed
=
FALSE
;
bool
transactional_table
,
joins_freed
=
FALSE
;
bool
changed
;
uint
value_count
;
uint
value_count
;
ulong
counter
=
1
;
ulong
counter
=
1
;
ulonglong
id
;
ulonglong
id
;
...
@@ -544,20 +545,17 @@ bool mysql_insert(THD *thd,TABLE_LIST *table_list,
...
@@ -544,20 +545,17 @@ bool mysql_insert(THD *thd,TABLE_LIST *table_list,
else
if
(
table
->
next_number_field
&&
info
.
copied
)
else
if
(
table
->
next_number_field
&&
info
.
copied
)
id
=
table
->
next_number_field
->
val_int
();
// Return auto_increment value
id
=
table
->
next_number_field
->
val_int
();
// Return auto_increment value
transactional_table
=
table
->
file
->
has_transactions
();
if
((
changed
=
(
info
.
copied
||
info
.
deleted
||
info
.
updated
)))
{
/*
/*
Invalidate the table in the query cache if something changed.
Invalidate the table in the query cache if something changed.
For the transactional algorithm to work the invalidation must be
For the transactional algorithm to work the invalidation must be
before binlog writing and ha_autocommit_or_rollback
before binlog writing and ha_autocommit_or_rollback
*/
*/
if
(
info
.
copied
||
info
.
deleted
||
info
.
updated
)
{
query_cache_invalidate3
(
thd
,
table_list
,
1
);
query_cache_invalidate3
(
thd
,
table_list
,
1
);
}
if
(
error
<=
0
||
!
transactional_table
)
transactional_table
=
table
->
file
->
has_transactions
();
if
((
info
.
copied
||
info
.
deleted
||
info
.
updated
)
&&
(
error
<=
0
||
!
transactional_table
))
{
{
if
(
mysql_bin_log
.
is_open
())
if
(
mysql_bin_log
.
is_open
())
{
{
...
@@ -571,12 +569,23 @@ bool mysql_insert(THD *thd,TABLE_LIST *table_list,
...
@@ -571,12 +569,23 @@ bool mysql_insert(THD *thd,TABLE_LIST *table_list,
if
(
!
transactional_table
)
if
(
!
transactional_table
)
thd
->
options
|=
OPTION_STATUS_NO_TRANS_UPDATE
;
thd
->
options
|=
OPTION_STATUS_NO_TRANS_UPDATE
;
}
}
}
if
(
transactional_table
)
if
(
transactional_table
)
error
=
ha_autocommit_or_rollback
(
thd
,
error
);
error
=
ha_autocommit_or_rollback
(
thd
,
error
);
if
(
thd
->
lock
)
if
(
thd
->
lock
)
{
{
mysql_unlock_tables
(
thd
,
thd
->
lock
);
mysql_unlock_tables
(
thd
,
thd
->
lock
);
/*
Invalidate the table in the query cache if something changed
after unlocking when changes become fisible.
TODO: this is workaround. right way will be move invalidating in
the unlock procedure.
*/
if
(
lock_type
==
TL_WRITE_CONCURRENT_INSERT
&&
changed
)
{
query_cache_invalidate3
(
thd
,
table_list
,
1
);
}
thd
->
lock
=
0
;
thd
->
lock
=
0
;
}
}
}
}
...
...
sql/sql_parse.cc
View file @
1626c2d9
...
@@ -3314,6 +3314,19 @@ mysql_execute_command(THD *thd)
...
@@ -3314,6 +3314,19 @@ mysql_execute_command(THD *thd)
select_lex
->
context
.
table_list
=
select_lex
->
context
.
table_list
=
select_lex
->
context
.
first_name_resolution_table
=
second_table
;
select_lex
->
context
.
first_name_resolution_table
=
second_table
;
res
=
handle_select
(
thd
,
lex
,
result
,
OPTION_SETUP_TABLES_DONE
);
res
=
handle_select
(
thd
,
lex
,
result
,
OPTION_SETUP_TABLES_DONE
);
/*
Invalidate the table in the query cache if something changed
after unlocking when changes become visible.
TODO: this is workaround. right way will be move invalidating in
the unlock procedure.
*/
if
(
first_table
->
lock_type
==
TL_WRITE_CONCURRENT_INSERT
&&
thd
->
lock
)
{
mysql_unlock_tables
(
thd
,
thd
->
lock
);
query_cache_invalidate3
(
thd
,
first_table
,
1
);
thd
->
lock
=
0
;
}
delete
result
;
delete
result
;
}
}
/* revert changes for SP */
/* revert changes for SP */
...
...
sql/sql_yacc.yy
View file @
1626c2d9
...
@@ -6068,7 +6068,19 @@ replace:
...
@@ -6068,7 +6068,19 @@ replace:
;
;
insert_lock_option:
insert_lock_option:
/* empty */ { $$= TL_WRITE_CONCURRENT_INSERT; }
/* empty */
{
#ifdef HAVE_QUERY_CACHE
/*
If it is SP we do not allow insert optimisation whan result of
insert visible only after the table unlocking but everyone can
read table.
*/
$$= (Lex->sphead ? TL_WRITE :TL_WRITE_CONCURRENT_INSERT);
#else
$$= TL_WRITE_CONCURRENT_INSERT;
#endif
}
| LOW_PRIORITY { $$= TL_WRITE_LOW_PRIORITY; }
| LOW_PRIORITY { $$= TL_WRITE_LOW_PRIORITY; }
| DELAYED_SYM { $$= TL_WRITE_DELAYED; }
| DELAYED_SYM { $$= TL_WRITE_DELAYED; }
| HIGH_PRIORITY { $$= TL_WRITE; }
| HIGH_PRIORITY { $$= TL_WRITE; }
...
@@ -6925,7 +6937,16 @@ opt_local:
...
@@ -6925,7 +6937,16 @@ opt_local:
load_data_lock:
load_data_lock:
/* empty */ { $$= YYTHD->update_lock_default; }
/* empty */ { $$= YYTHD->update_lock_default; }
| CONCURRENT { $$= TL_WRITE_CONCURRENT_INSERT ; }
| CONCURRENT
{
#ifdef HAVE_QUERY_CACHE
/*
Ignore this option in SP to avoid problem with query cache
*/
if (Lex->sphead != 0)
#endif
$$= TL_WRITE_CONCURRENT_INSERT;
}
| LOW_PRIORITY { $$= TL_WRITE_LOW_PRIORITY; };
| LOW_PRIORITY { $$= TL_WRITE_LOW_PRIORITY; };
...
...
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