summaryrefslogtreecommitdiff
path: root/storage/rocksdb/mysql-test/rocksdb_rpl/r/multiclient_2pc.result
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2017-09-15 10:04:49 +0000
committerSergei Petrunia <psergey@askmonty.org>2017-09-15 10:04:49 +0000
commit3fae64b196cfb94ac4084d02c5745285589c6b48 (patch)
treebd96a225ab36cfde9b6f650f5d7d675baf9889f6 /storage/rocksdb/mysql-test/rocksdb_rpl/r/multiclient_2pc.result
parent43d5edf97c5f9e86173816c1837a1d01267c5165 (diff)
downloadmariadb-git-3fae64b196cfb94ac4084d02c5745285589c6b48.tar.gz
Copy of
commit 184a4a2d82f4f6f3cbcb1015bcdb32bebe73315c Author: Abhinav Sharma <abhinavsharma@fb.com> Date: Thu Sep 14 11:40:08 2017 -0700 Bump rocksdb submodule Summary: Bump rocksdb to include the fix for rocksdb.trx_info_rpl The bug was introduced in: https://github.com/facebook/rocksdb/pull/2850 Fixed in: https://github.com/facebook/rocksdb/pull/2881 update-submodule: rocksdb Reviewed By: lth Differential Revision: D5834658 fbshipit-source-id: d1551bf
Diffstat (limited to 'storage/rocksdb/mysql-test/rocksdb_rpl/r/multiclient_2pc.result')
-rw-r--r--storage/rocksdb/mysql-test/rocksdb_rpl/r/multiclient_2pc.result9
1 files changed, 4 insertions, 5 deletions
diff --git a/storage/rocksdb/mysql-test/rocksdb_rpl/r/multiclient_2pc.result b/storage/rocksdb/mysql-test/rocksdb_rpl/r/multiclient_2pc.result
index 7a7400f17e1..493107ec071 100644
--- a/storage/rocksdb/mysql-test/rocksdb_rpl/r/multiclient_2pc.result
+++ b/storage/rocksdb/mysql-test/rocksdb_rpl/r/multiclient_2pc.result
@@ -1,4 +1,5 @@
DROP TABLE IF EXISTS t1;
+SET GLOBAL MAX_BINLOG_SIZE = 4096;
SET GLOBAL ROCKSDB_ENABLE_2PC = ON;
create table t1 (a int primary key, b int, c varchar(255)) engine=rocksdb;
'con1'
@@ -7,12 +8,10 @@ SET DEBUG_SYNC='rocksdb.prepared SIGNAL parked WAIT_FOR go';
insert into t1 values (1, 1, "iamtheogthealphaandomega");;
'con2'
insert into t1 values (2, 1, "i_am_just_here_to_trigger_a_flush");
-SET GLOBAL ROCKSDB_ENABLE_2PC = OFF;
-SET GLOBAL ROCKSDB_WRITE_SYNC = OFF;
+SET GLOBAL ROCKSDB_FLUSH_LOG_AT_TRX_COMMIT = 0;
SET GLOBAL SYNC_BINLOG = 0;
SET DEBUG_SYNC='now WAIT_FOR parked';
-SET GLOBAL ROCKSDB_ENABLE_2PC = ON;
-SET GLOBAL ROCKSDB_WRITE_SYNC = ON;
+SET GLOBAL ROCKSDB_FLUSH_LOG_AT_TRX_COMMIT = 2;
SET GLOBAL SYNC_BINLOG = 1;
insert into t1 values (1000000, 1, "i_am_just_here_to_trigger_a_flush");
SET DEBUG_SYNC='now SIGNAL go';
@@ -23,5 +22,5 @@ a b c
1 1 iamtheogthealphaandomega
select count(*) from t1;
count(*)
-1000000
+4096
drop table t1;