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
980664bf
Commit
980664bf
authored
Nov 26, 2012
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql-test: sys_vars stub for a new xtradb config variable; tc_log_mmap test;
parent
c499fa1e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
0 deletions
+39
-0
mysql-test/suite/sys_vars/r/innodb_buffer_pool_populate_basic.result
...suite/sys_vars/r/innodb_buffer_pool_populate_basic.result
+1
-0
mysql-test/suite/sys_vars/t/innodb_buffer_pool_populate_basic.test
...t/suite/sys_vars/t/innodb_buffer_pool_populate_basic.test
+1
-0
storage/pbxt/mysql-test/main/r/rpl_mmap.result
storage/pbxt/mysql-test/main/r/rpl_mmap.result
+16
-0
storage/pbxt/mysql-test/main/t/rpl_mmap.test
storage/pbxt/mysql-test/main/t/rpl_mmap.test
+21
-0
No files found.
mysql-test/suite/sys_vars/r/innodb_buffer_pool_populate_basic.result
0 → 100644
View file @
980664bf
XtraDB extension
mysql-test/suite/sys_vars/t/innodb_buffer_pool_populate_basic.test
0 → 100644
View file @
980664bf
--
echo
XtraDB
extension
storage/pbxt/mysql-test/main/r/rpl_mmap.result
0 → 100644
View file @
980664bf
include/master-slave.inc
[connection master]
create table t1 (a int) engine=InnoDB;
create table t2 (a int) engine=pbxt;
begin;
insert into t1 values (1);
insert into t2 values (2);
commit;
select * from t1;
a
1
select * from t2;
a
2
drop table t1, t2;
include/rpl_end.inc
storage/pbxt/mysql-test/main/t/rpl_mmap.test
0 → 100644
View file @
980664bf
--
source
include
/
have_innodb
.
inc
--
source
include
/
master
-
slave
.
inc
create
table
t1
(
a
int
)
engine
=
InnoDB
;
create
table
t2
(
a
int
)
engine
=
pbxt
;
begin
;
insert
into
t1
values
(
1
);
insert
into
t2
values
(
2
);
commit
;
sync_slave_with_master
;
connection
slave
;
select
*
from
t1
;
select
*
from
t2
;
connection
master
;
drop
table
t1
,
t2
;
--
source
include
/
rpl_end
.
inc
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