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
c9fb9be3
Commit
c9fb9be3
authored
Dec 12, 2008
by
Andrei Elkin
Browse files
Options
Browse Files
Download
Plain Diff
merging from the repository to my local tree
parents
d083ceab
97d0c8d9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
mysql-test/include/commit.inc
mysql-test/include/commit.inc
+5
-2
mysql-test/r/commit_1innodb.result
mysql-test/r/commit_1innodb.result
+5
-2
No files found.
mysql-test/include/commit.inc
View file @
c9fb9be3
...
...
@@ -671,8 +671,11 @@ call p_verify_status_increment(2, 2, 2, 2);
savepoint
a
;
call
p_verify_status_increment
(
0
,
0
,
0
,
0
);
insert
t1
set
a
=
4
;
--
echo
# Sic: a bug. Binlog did not register itself this time.
call
p_verify_status_increment
(
1
,
0
,
1
,
0
);
--
echo
# Binlog does not register itself this time for other than the 1st
--
echo
# statement of the transaction with MIXED/STATEMENT binlog_format.
--
echo
# It needs registering with the ROW format. Therefore 1,0,2,2 are
--
echo
# the correct arguments to this test after bug#40221 fixed.
call
p_verify_status_increment
(
1
,
0
,
2
,
2
);
release
savepoint
a
;
rollback
;
call
p_verify_status_increment
(
0
,
0
,
0
,
0
);
...
...
mysql-test/r/commit_1innodb.result
View file @
c9fb9be3
...
...
@@ -770,8 +770,11 @@ call p_verify_status_increment(0, 0, 0, 0);
SUCCESS
insert t1 set a=4;
# Sic: a bug. Binlog did not register itself this time.
call p_verify_status_increment(1, 0, 1, 0);
# Binlog does not register itself this time for other than the 1st
# statement of the transaction with MIXED/STATEMENT binlog_format.
# It needs registering with the ROW format. Therefore 1,0,2,2 are
# the correct arguments to this test after bug#40221 fixed.
call p_verify_status_increment(1, 0, 2, 2);
SUCCESS
release savepoint a;
...
...
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