summaryrefslogtreecommitdiff
path: root/storage/rocksdb/mysql-test/rocksdb/r/bulk_load_rev_data.result
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2018-01-27 11:52:34 +0000
committerSergei Petrunia <psergey@askmonty.org>2018-01-27 11:52:34 +0000
commite3a03da2bcaed43a06b49b4d22f462804503ec14 (patch)
tree8f21d9fff7cfb0cb205f1116a8d41f11838d7fac /storage/rocksdb/mysql-test/rocksdb/r/bulk_load_rev_data.result
parent2da191791260d5ca3adcb6857404912d52926ee2 (diff)
parent445e518bc7aa5f4bb48d98e798905c9c0b0ce673 (diff)
downloadmariadb-git-e3a03da2bcaed43a06b49b4d22f462804503ec14.tar.gz
Merge from merge-myrocks:
commit 445e518bc7aa5f4bb48d98e798905c9c0b0ce673 Author: Sergei Petrunia <psergey@askmonty.org> Date: Sat Jan 27 10:18:20 2018 +0000 Copy of commit f8f364b47f2784f16b401f27658f1c16eaf348ec Author: Jay Edgar <jkedgar@fb.com> Date: Tue Oct 17 15:19:31 2017 -0700 Add a hashed, hierarchical, wheel timer implementation Summary: In order to implement idle timeouts on detached sessions we need something inside MySQL that is lightweight and can handle calling events in the future wi By default the timers are grouped into 10ms buckets (the 'hashed' part), though the size of the buckets is configurable at the creation of the timer. Eac Reviewed By: djwatson Differential Revision: D6199806 fbshipit-source-id: 5e1590f
Diffstat (limited to 'storage/rocksdb/mysql-test/rocksdb/r/bulk_load_rev_data.result')
-rw-r--r--storage/rocksdb/mysql-test/rocksdb/r/bulk_load_rev_data.result7
1 files changed, 3 insertions, 4 deletions
diff --git a/storage/rocksdb/mysql-test/rocksdb/r/bulk_load_rev_data.result b/storage/rocksdb/mysql-test/rocksdb/r/bulk_load_rev_data.result
index e566691af28..c1b6d48a6a5 100644
--- a/storage/rocksdb/mysql-test/rocksdb/r/bulk_load_rev_data.result
+++ b/storage/rocksdb/mysql-test/rocksdb/r/bulk_load_rev_data.result
@@ -1,4 +1,3 @@
-DROP TABLE IF EXISTS t1, t2, t3;
Data will be ordered in descending order
CREATE TABLE t1(
pk CHAR(5),
@@ -6,21 +5,21 @@ a CHAR(30),
b CHAR(30),
PRIMARY KEY(pk) COMMENT "cf1",
KEY(a)
-) COLLATE 'latin1_bin';
+) ENGINE=ROCKSDB COLLATE 'latin1_bin';
CREATE TABLE t2(
pk CHAR(5),
a CHAR(30),
b CHAR(30),
PRIMARY KEY(pk) COMMENT "cf1",
KEY(a)
-) COLLATE 'latin1_bin';
+) ENGINE=ROCKSDB COLLATE 'latin1_bin';
CREATE TABLE t3(
pk CHAR(5),
a CHAR(30),
b CHAR(30),
PRIMARY KEY(pk) COMMENT "cf1",
KEY(a)
-) COLLATE 'latin1_bin' PARTITION BY KEY() PARTITIONS 4;
+) ENGINE=ROCKSDB COLLATE 'latin1_bin' PARTITION BY KEY() PARTITIONS 4;
connect other,localhost,root,,;
set session transaction isolation level repeatable read;
select * from information_schema.rocksdb_dbstats where stat_type='DB_NUM_SNAPSHOTS';