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
871eb3e5
Commit
871eb3e5
authored
Feb 14, 2008
by
aelkin/andrei@mysql1000.dsl.inet.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug#33329 extraneous ROLLBACK in binlog on connection does not use trans tables
changes for an assert and an updated results file.
parent
139e6acd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/r/mix_innodb_myisam_binlog.result
mysql-test/r/mix_innodb_myisam_binlog.result
+1
-1
sql/sql_update.cc
sql/sql_update.cc
+1
-1
No files found.
mysql-test/r/mix_innodb_myisam_binlog.result
View file @
871eb3e5
...
@@ -447,7 +447,7 @@ UPDATE t4,t3 SET t4.a=t3.a + bug27417(1) /* top level non-ta table */;
...
@@ -447,7 +447,7 @@ UPDATE t4,t3 SET t4.a=t3.a + bug27417(1) /* top level non-ta table */;
ERROR 23000: Duplicate entry '2' for key 1
ERROR 23000: Duplicate entry '2' for key 1
show master status /* the offset must denote there is the query */;
show master status /* the offset must denote there is the query */;
File Position Binlog_Do_DB Binlog_Ignore_DB
File Position Binlog_Do_DB Binlog_Ignore_DB
master-bin.000001
369
master-bin.000001
230
select count(*) from t1 /* must be 4 */;
select count(*) from t1 /* must be 4 */;
count(*)
count(*)
4
4
...
...
sql/sql_update.cc
View file @
871eb3e5
...
@@ -1482,7 +1482,7 @@ void multi_update::send_error(uint errcode,const char *err)
...
@@ -1482,7 +1482,7 @@ void multi_update::send_error(uint errcode,const char *err)
if
(
trans_safe
)
if
(
trans_safe
)
{
{
DBUG_ASSERT
(
transactional_tables
);
DBUG_ASSERT
(
!
updated
||
transactional_tables
);
(
void
)
ha_autocommit_or_rollback
(
thd
,
1
);
(
void
)
ha_autocommit_or_rollback
(
thd
,
1
);
}
}
else
else
...
...
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