mirror of
https://github.com/MariaDB/server.git
synced 2025-09-11 05:52:26 +03:00
commit dcd9379eb5707bc7514a2ff4d9127790356505cb Author: Manuel Ung <mung@fb.com> Date: Fri Jun 14 10:38:17 2019 -0700 Skip valgrind for rocksdb.force_shutdown Summary: This test does unclean shutdown, and leaks memory. Squash with: D15749084 Reviewed By: hermanlee Differential Revision: D15828957 fbshipit-source-id: 30541455d74
22 lines
525 B
Plaintext
22 lines
525 B
Plaintext
include/rpl_init.inc [topology=none]
|
|
include/rpl_default_connections.inc
|
|
create database db1;
|
|
create table db1.t1 (
|
|
`id` int(10) not null auto_increment,
|
|
`k` int(10),
|
|
`data` varchar(2048),
|
|
primary key (`id`),
|
|
key (`k`)
|
|
) engine=rocksdb;
|
|
include/rpl_stop_server.inc [server_number=2]
|
|
myrocks_hotbackup copy phase
|
|
myrocks_hotbackup copy phase
|
|
myrocks_hotbackup move-back phase
|
|
include/rpl_start_server.inc [server_number=2]
|
|
select count(*) from db1.t1;
|
|
count(*)
|
|
250000
|
|
drop database db1;
|
|
drop database db1;
|
|
include/rpl_end.inc
|