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
5b13cc5a
Commit
5b13cc5a
authored
Jun 22, 2007
by
tsmith@maint1.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
binlog_innodb.result:
post-merge fix
parent
8a946f55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
mysql-test/r/binlog_innodb.result
mysql-test/r/binlog_innodb.result
+12
-12
No files found.
mysql-test/r/binlog_innodb.result
View file @
5b13cc5a
...
@@ -113,26 +113,26 @@ master-bin.000001 # Update_rows # # table_id: # flags: STMT_END_F
...
@@ -113,26 +113,26 @@ master-bin.000001 # Update_rows # # table_id: # flags: STMT_END_F
master-bin.000001 # Xid # # COMMIT /* XID */
master-bin.000001 # Xid # # COMMIT /* XID */
DROP TABLE t1;
DROP TABLE t1;
show status like "binlog_cache_use";
show status like "binlog_cache_use";
Variable_name
Value
Variable_name
Value
Binlog_cache_use
0
Binlog_cache_use
13
show status like "binlog_cache_disk_use";
show status like "binlog_cache_disk_use";
Variable_name
Value
Variable_name
Value
Binlog_cache_disk_use
0
Binlog_cache_disk_use
0
create table t1 (a int) engine=innodb;
create table t1 (a int) engine=innodb;
show status like "binlog_cache_use";
show status like "binlog_cache_use";
Variable_name
Value
Variable_name
Value
Binlog_cache_use
1
Binlog_cache_use
14
show status like "binlog_cache_disk_use";
show status like "binlog_cache_disk_use";
Variable_name
Value
Variable_name
Value
Binlog_cache_disk_use
1
Binlog_cache_disk_use
1
begin;
begin;
delete from t1;
delete from t1;
commit;
commit;
show status like "binlog_cache_use";
show status like "binlog_cache_use";
Variable_name
Value
Variable_name
Value
Binlog_cache_use
2
Binlog_cache_use
15
show status like "binlog_cache_disk_use";
show status like "binlog_cache_disk_use";
Variable_name
Value
Variable_name
Value
Binlog_cache_disk_use
1
Binlog_cache_disk_use
1
drop table t1;
drop table t1;
End of tests
End of tests
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