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
06087d23
Commit
06087d23
authored
May 12, 2011
by
Mikael Ronström
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
69396894
7577c115
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
2 deletions
+48
-2
mysql-test/suite/binlog/r/binlog_innodb_row.result
mysql-test/suite/binlog/r/binlog_innodb_row.result
+17
-0
mysql-test/suite/binlog/t/binlog_innodb_row.test
mysql-test/suite/binlog/t/binlog_innodb_row.test
+26
-0
sql/log.cc
sql/log.cc
+5
-2
No files found.
mysql-test/suite/binlog/r/binlog_innodb_row.result
View file @
06087d23
...
...
@@ -59,3 +59,20 @@ show binlog events from <binlog_start>;
Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 # Query # # use `test`; DROP TEMPORARY TABLE IF EXISTS `t1` /* generated by server */
###############################################
#
# Bug#12346411 SQL/LOG.CC:6509: ASSERTION `PREPARED_XIDS > 0' FAILED
#
DROP TABLE IF EXISTS t1, t2;
CREATE TABLE t1(a INT PRIMARY KEY) engine=innodb;
CREATE TABLE t2(a INT) engine=myisam;
INSERT INTO t1 VALUES (1);
START TRANSACTION;
INSERT INTO t2 VALUES (1);
INSERT IGNORE INTO t1 VALUES (1);
COMMIT;
INSERT INTO t1 VALUES (2);
START TRANSACTION;
INSERT INTO t2 VALUES (2);
UPDATE IGNORE t1 SET a=1 WHERE a=2;
COMMIT;
DROP TABLE t1, t2;
mysql-test/suite/binlog/t/binlog_innodb_row.test
View file @
06087d23
...
...
@@ -77,3 +77,29 @@ DROP TEMPORARY TABLE t1;
--
echo
###############################################
--
source
include
/
show_binlog_events
.
inc
--
echo
###############################################
--
echo
#
--
echo
# Bug#12346411 SQL/LOG.CC:6509: ASSERTION `PREPARED_XIDS > 0' FAILED
--
echo
#
--
disable_warnings
DROP
TABLE
IF
EXISTS
t1
,
t2
;
--
enable_warnings
CREATE
TABLE
t1
(
a
INT
PRIMARY
KEY
)
engine
=
innodb
;
CREATE
TABLE
t2
(
a
INT
)
engine
=
myisam
;
INSERT
INTO
t1
VALUES
(
1
);
START
TRANSACTION
;
INSERT
INTO
t2
VALUES
(
1
);
INSERT
IGNORE
INTO
t1
VALUES
(
1
);
COMMIT
;
INSERT
INTO
t1
VALUES
(
2
);
START
TRANSACTION
;
INSERT
INTO
t2
VALUES
(
2
);
UPDATE
IGNORE
t1
SET
a
=
1
WHERE
a
=
2
;
COMMIT
;
DROP
TABLE
t1
,
t2
;
sql/log.cc
View file @
06087d23
...
...
@@ -6506,8 +6506,11 @@ int TC_LOG_BINLOG::unlog(ulong cookie, my_xid xid)
{
DBUG_ENTER
(
"TC_LOG_BINLOG::unlog"
);
mysql_mutex_lock
(
&
LOCK_prep_xids
);
DBUG_ASSERT
(
prepared_xids
>
0
);
if
(
--
prepared_xids
==
0
)
{
// prepared_xids can be 0 if the transaction had ignorable errors.
DBUG_ASSERT
(
prepared_xids
>=
0
);
if
(
prepared_xids
>
0
)
prepared_xids
--
;
if
(
prepared_xids
==
0
)
{
DBUG_PRINT
(
"info"
,
(
"prepared_xids=%lu"
,
prepared_xids
));
mysql_cond_signal
(
&
COND_prep_xids
);
}
...
...
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