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
b6402bd4
Commit
b6402bd4
authored
Jun 07, 2005
by
lars@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#6883: Merge fixes
parent
0610e204
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
282 additions
and
173 deletions
+282
-173
mysql-test/r/innodb.result
mysql-test/r/innodb.result
+3
-6
mysql-test/r/rpl_ddl.result
mysql-test/r/rpl_ddl.result
+278
-158
mysql-test/r/sp_trans.result
mysql-test/r/sp_trans.result
+0
-4
mysql-test/t/sp_trans.test
mysql-test/t/sp_trans.test
+1
-5
No files found.
mysql-test/r/innodb.result
View file @
b6402bd4
...
...
@@ -1637,16 +1637,14 @@ t2 CREATE TABLE `t2` (
drop table t2, t1;
show status like "binlog_cache_use";
Variable_name Value
Binlog_cache_use 24
Binlog_cache_use 25
Binlog_cache_use 155
show status like "binlog_cache_disk_use";
Variable_name Value
Binlog_cache_disk_use 0
create table t1 (a int) engine=innodb;
show status like "binlog_cache_use";
Variable_name Value
Binlog_cache_use 25
Binlog_cache_use 26
Binlog_cache_use 156
show status like "binlog_cache_disk_use";
Variable_name Value
Binlog_cache_disk_use 1
...
...
@@ -1655,8 +1653,7 @@ delete from t1;
commit;
show status like "binlog_cache_use";
Variable_name Value
Binlog_cache_use 26
Binlog_cache_use 27
Binlog_cache_use 157
show status like "binlog_cache_disk_use";
Variable_name Value
Binlog_cache_disk_use 1
...
...
mysql-test/r/rpl_ddl.result
View file @
b6402bd4
This diff is collapsed.
Click to expand it.
mysql-test/r/sp_trans.result
View file @
b6402bd4
...
...
@@ -7,16 +7,12 @@ end|
set autocommit=0|
insert t1 values (2)|
call bug8850()|
ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction
commit|
select * from t1|
a
2
call bug8850()|
ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction
set autocommit=1|
select * from t1|
a
2
drop table t1|
drop procedure bug8850|
mysql-test/t/sp_trans.test
View file @
b6402bd4
...
...
@@ -20,14 +20,10 @@ end|
set
autocommit
=
0
|
insert
t1
values
(
2
)
|
--
error
1192
call
bug8850
()
|
commit
|
select
*
from
t1
|
#
# when CALL will be fixed to not start a transaction, the error should
# go away
--
error
1192
call
bug8850
()
|
set
autocommit
=
1
|
select
*
from
t1
|
...
...
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