From a967bd4fd551cc45ca406c58bfdbb1350860180c Mon Sep 17 00:00:00 2001 From: Ryan Schmukler Date: Mon, 20 Mar 2017 10:52:23 -0400 Subject: [PATCH] Expose ReadOptions from DB --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 56d193e..19a5c0f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -45,7 +45,7 @@ mod db; mod db_options; pub use db::{DBCompactionStyle, DBCompressionType, DBIterator, DBRawIterator, DBRecoveryMode, DBVector, - Direction, IteratorMode, Snapshot, WriteBatch, new_bloom_filter}; + ReadOptions, Direction, IteratorMode, Snapshot, WriteBatch, new_bloom_filter}; pub use merge_operator::MergeOperands; pub use compaction_filter::Decision as CompactionDecision;