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
a6461a64
Commit
a6461a64
authored
Aug 17, 2006
by
mats@romeo.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#20863 (if binlog format is changed between update and unlock of table, wrong binlog):
Post-merge fixes.
parent
a982db81
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
338 additions
and
20 deletions
+338
-20
mysql-test/r/rpl_switch_stm_row_mixed.result
mysql-test/r/rpl_switch_stm_row_mixed.result
+334
-20
mysql-test/t/rpl_switch_stm_row_mixed.test
mysql-test/t/rpl_switch_stm_row_mixed.test
+4
-0
No files found.
mysql-test/r/rpl_switch_stm_row_mixed.result
View file @
a6461a64
This diff is collapsed.
Click to expand it.
mysql-test/t/rpl_switch_stm_row_mixed.test
View file @
a6461a64
...
...
@@ -464,12 +464,15 @@ if ($you_want_to_test_UDF)
select
count
(
*
)
from
t9
;
}
sync_slave_with_master
;
#
# Bug#20863 If binlog format is changed between update and unlock of
# tables, wrong binlog
#
connection
master
;
DROP
TABLE
IF
EXISTS
t11
;
SET
SESSION
BINLOG_FORMAT
=
STATEMENT
;
CREATE
TABLE
t11
(
song
VARCHAR
(
255
));
LOCK
TABLES
t11
WRITE
;
...
...
@@ -485,6 +488,7 @@ USE mysqltest1;
--
query_vertical
SELECT
*
FROM
t11
connection
master
;
DROP
TABLE
IF
EXISTS
t12
;
SET
SESSION
BINLOG_FORMAT
=
MIXED
;
CREATE
TABLE
t12
(
data
LONG
);
LOCK
TABLES
t12
WRITE
;
...
...
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