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
aca1a83f
Commit
aca1a83f
authored
Mar 25, 2009
by
Ramil Kalimullin
Browse files
Options
Browse Files
Download
Plain Diff
Manual merge.
parents
4f5f7f35
eccad3f2
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
150 additions
and
0 deletions
+150
-0
mysql-test/extra/binlog_tests/binlog.test
mysql-test/extra/binlog_tests/binlog.test
+40
-0
mysql-test/suite/binlog/r/binlog_row_binlog.result
mysql-test/suite/binlog/r/binlog_row_binlog.result
+32
-0
mysql-test/suite/binlog/r/binlog_stm_binlog.result
mysql-test/suite/binlog/r/binlog_stm_binlog.result
+32
-0
sql/sp_head.cc
sql/sp_head.cc
+5
-0
sql/sql_class.cc
sql/sql_class.cc
+1
-0
sql/sql_class.h
sql/sql_class.h
+3
-0
sql/sql_parse.cc
sql/sql_parse.cc
+37
-0
No files found.
mysql-test/extra/binlog_tests/binlog.test
View file @
aca1a83f
...
@@ -164,6 +164,46 @@ DROP TABLE t1;
...
@@ -164,6 +164,46 @@ DROP TABLE t1;
DROP
DATABASE
bug39182
;
DROP
DATABASE
bug39182
;
USE
test
;
USE
test
;
#
# Bug#35383: binlog playback and replication breaks due to
# name_const substitution
#
DELIMITER
//;
CREATE
PROCEDURE
p1
(
IN
v1
INT
)
BEGIN
CREATE
TABLE
t1
SELECT
v1
;
DROP
TABLE
t1
;
END
//
CREATE
PROCEDURE
p2
()
BEGIN
DECLARE
v1
INT
;
CREATE
TABLE
t1
SELECT
v1
+
1
;
DROP
TABLE
t1
;
END
//
CREATE
PROCEDURE
p3
(
IN
v1
INT
)
BEGIN
CREATE
TABLE
t1
SELECT
1
FROM
DUAL
WHERE
v1
!=
0
;
DROP
TABLE
t1
;
END
//
CREATE
PROCEDURE
p4
(
IN
v1
INT
)
BEGIN
DECLARE
v2
INT
;
CREATE
TABLE
t1
SELECT
1
,
v1
,
v2
;
DROP
TABLE
t1
;
CREATE
TABLE
t1
SELECT
1
,
v1
+
1
,
v2
;
DROP
TABLE
t1
;
END
//
DELIMITER
;
//
CALL
p1
(
1
);
CALL
p2
();
CALL
p3
(
0
);
CALL
p4
(
0
);
DROP
PROCEDURE
p1
;
DROP
PROCEDURE
p2
;
DROP
PROCEDURE
p3
;
DROP
PROCEDURE
p4
;
--
echo
End
of
5.0
tests
--
echo
End
of
5.0
tests
# Test of a too big SET INSERT_ID: see if the truncated value goes
# Test of a too big SET INSERT_ID: see if the truncated value goes
...
...
mysql-test/suite/binlog/r/binlog_row_binlog.result
View file @
aca1a83f
...
@@ -1137,6 +1137,38 @@ DROP PROCEDURE p1;
...
@@ -1137,6 +1137,38 @@ DROP PROCEDURE p1;
DROP TABLE t1;
DROP TABLE t1;
DROP DATABASE bug39182;
DROP DATABASE bug39182;
USE test;
USE test;
CREATE PROCEDURE p1(IN v1 INT)
BEGIN
CREATE TABLE t1 SELECT v1;
DROP TABLE t1;
END//
CREATE PROCEDURE p2()
BEGIN
DECLARE v1 INT;
CREATE TABLE t1 SELECT v1+1;
DROP TABLE t1;
END//
CREATE PROCEDURE p3(IN v1 INT)
BEGIN
CREATE TABLE t1 SELECT 1 FROM DUAL WHERE v1!=0;
DROP TABLE t1;
END//
CREATE PROCEDURE p4(IN v1 INT)
BEGIN
DECLARE v2 INT;
CREATE TABLE t1 SELECT 1, v1, v2;
DROP TABLE t1;
CREATE TABLE t1 SELECT 1, v1+1, v2;
DROP TABLE t1;
END//
CALL p1(1);
CALL p2();
CALL p3(0);
CALL p4(0);
DROP PROCEDURE p1;
DROP PROCEDURE p2;
DROP PROCEDURE p3;
DROP PROCEDURE p4;
End of 5.0 tests
End of 5.0 tests
reset master;
reset master;
create table t1 (id tinyint auto_increment primary key);
create table t1 (id tinyint auto_increment primary key);
...
...
mysql-test/suite/binlog/r/binlog_stm_binlog.result
View file @
aca1a83f
...
@@ -644,6 +644,38 @@ DROP PROCEDURE p1;
...
@@ -644,6 +644,38 @@ DROP PROCEDURE p1;
DROP TABLE t1;
DROP TABLE t1;
DROP DATABASE bug39182;
DROP DATABASE bug39182;
USE test;
USE test;
CREATE PROCEDURE p1(IN v1 INT)
BEGIN
CREATE TABLE t1 SELECT v1;
DROP TABLE t1;
END//
CREATE PROCEDURE p2()
BEGIN
DECLARE v1 INT;
CREATE TABLE t1 SELECT v1+1;
DROP TABLE t1;
END//
CREATE PROCEDURE p3(IN v1 INT)
BEGIN
CREATE TABLE t1 SELECT 1 FROM DUAL WHERE v1!=0;
DROP TABLE t1;
END//
CREATE PROCEDURE p4(IN v1 INT)
BEGIN
DECLARE v2 INT;
CREATE TABLE t1 SELECT 1, v1, v2;
DROP TABLE t1;
CREATE TABLE t1 SELECT 1, v1+1, v2;
DROP TABLE t1;
END//
CALL p1(1);
CALL p2();
CALL p3(0);
CALL p4(0);
DROP PROCEDURE p1;
DROP PROCEDURE p2;
DROP PROCEDURE p3;
DROP PROCEDURE p4;
End of 5.0 tests
End of 5.0 tests
reset master;
reset master;
create table t1 (id tinyint auto_increment primary key);
create table t1 (id tinyint auto_increment primary key);
...
...
sql/sp_head.cc
View file @
aca1a83f
...
@@ -956,6 +956,8 @@ subst_spvars(THD *thd, sp_instr *instr, LEX_STRING *query_str)
...
@@ -956,6 +956,8 @@ subst_spvars(THD *thd, sp_instr *instr, LEX_STRING *query_str)
qbuf
.
length
(
0
);
qbuf
.
length
(
0
);
cur
=
query_str
->
str
;
cur
=
query_str
->
str
;
prev_pos
=
res
=
0
;
prev_pos
=
res
=
0
;
thd
->
query_name_consts
=
0
;
for
(
Item_splocal
**
splocal
=
sp_vars_uses
.
front
();
for
(
Item_splocal
**
splocal
=
sp_vars_uses
.
front
();
splocal
<
sp_vars_uses
.
back
();
splocal
++
)
splocal
<
sp_vars_uses
.
back
();
splocal
++
)
{
{
...
@@ -989,6 +991,8 @@ subst_spvars(THD *thd, sp_instr *instr, LEX_STRING *query_str)
...
@@ -989,6 +991,8 @@ subst_spvars(THD *thd, sp_instr *instr, LEX_STRING *query_str)
res
|=
qbuf
.
append
(
')'
);
res
|=
qbuf
.
append
(
')'
);
if
(
res
)
if
(
res
)
break
;
break
;
thd
->
query_name_consts
++
;
}
}
res
|=
qbuf
.
append
(
cur
+
prev_pos
,
query_str
->
length
-
prev_pos
);
res
|=
qbuf
.
append
(
cur
+
prev_pos
,
query_str
->
length
-
prev_pos
);
if
(
res
)
if
(
res
)
...
@@ -2853,6 +2857,7 @@ sp_instr_stmt::execute(THD *thd, uint *nextp)
...
@@ -2853,6 +2857,7 @@ sp_instr_stmt::execute(THD *thd, uint *nextp)
*
nextp
=
m_ip
+
1
;
*
nextp
=
m_ip
+
1
;
thd
->
query
=
query
;
thd
->
query
=
query
;
thd
->
query_length
=
query_length
;
thd
->
query_length
=
query_length
;
thd
->
query_name_consts
=
0
;
if
(
!
thd
->
is_error
())
if
(
!
thd
->
is_error
())
thd
->
main_da
.
reset_diagnostics_area
();
thd
->
main_da
.
reset_diagnostics_area
();
...
...
sql/sql_class.cc
View file @
aca1a83f
...
@@ -599,6 +599,7 @@ THD::THD()
...
@@ -599,6 +599,7 @@ THD::THD()
one_shot_set
=
0
;
one_shot_set
=
0
;
file_id
=
0
;
file_id
=
0
;
query_id
=
0
;
query_id
=
0
;
query_name_consts
=
0
;
warn_id
=
0
;
warn_id
=
0
;
db_charset
=
global_system_variables
.
collation_database
;
db_charset
=
global_system_variables
.
collation_database
;
bzero
(
ha_data
,
sizeof
(
ha_data
));
bzero
(
ha_data
,
sizeof
(
ha_data
));
...
...
sql/sql_class.h
View file @
aca1a83f
...
@@ -1775,6 +1775,9 @@ public:
...
@@ -1775,6 +1775,9 @@ public:
sp_cache
*
sp_proc_cache
;
sp_cache
*
sp_proc_cache
;
sp_cache
*
sp_func_cache
;
sp_cache
*
sp_func_cache
;
/** number of name_const() substitutions, see sp_head.cc:subst_spvars() */
uint
query_name_consts
;
/*
/*
If we do a purge of binary logs, log index info of the threads
If we do a purge of binary logs, log index info of the threads
that are currently reading it needs to be adjusted. To do that
that are currently reading it needs to be adjusted. To do that
...
...
sql/sql_parse.cc
View file @
aca1a83f
...
@@ -2558,6 +2558,43 @@ mysql_execute_command(THD *thd)
...
@@ -2558,6 +2558,43 @@ mysql_execute_command(THD *thd)
{
{
select_result
*
result
;
select_result
*
result
;
/*
If:
a) we inside an SP and there was NAME_CONST substitution,
b) binlogging is on (STMT mode),
c) we log the SP as separate statements
raise a warning, as it may cause problems
(see 'NAME_CONST issues' in 'Binary Logging of Stored Programs')
*/
if
(
thd
->
query_name_consts
&&
mysql_bin_log
.
is_open
()
&&
thd
->
variables
.
binlog_format
==
BINLOG_FORMAT_STMT
&&
!
mysql_bin_log
.
is_query_in_union
(
thd
,
thd
->
query_id
))
{
List_iterator_fast
<
Item
>
it
(
select_lex
->
item_list
);
Item
*
item
;
uint
splocal_refs
=
0
;
/* Count SP local vars in the top-level SELECT list */
while
((
item
=
it
++
))
{
if
(
item
->
is_splocal
())
splocal_refs
++
;
}
/*
If it differs from number of NAME_CONST substitution applied,
we may have a SOME_FUNC(NAME_CONST()) in the SELECT list,
that may cause a problem with binary log (see BUG#35383),
raise a warning.
*/
if
(
splocal_refs
!=
thd
->
query_name_consts
)
push_warning
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_UNKNOWN_ERROR
,
"Invoked routine ran a statement that may cause problems with "
"binary log, see 'NAME_CONST issues' in 'Binary Logging of Stored Programs' "
"section of the manual."
);
}
select_lex
->
options
|=
SELECT_NO_UNLOCK
;
select_lex
->
options
|=
SELECT_NO_UNLOCK
;
unit
->
set_limit
(
select_lex
);
unit
->
set_limit
(
select_lex
);
...
...
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