From 503bd70f0bdbced646757e8c80c1d7dff4f2d034 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Fri, 28 Nov 2014 13:36:25 -0500 Subject: [PATCH] update priorities --- README.md | 11 +++++------ src/rocksdb.rs | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5625461..0ee613f 100644 --- a/README.md +++ b/README.md @@ -41,18 +41,17 @@ fn main() { - [x] linux support - [x] rocksdb compiled via cargo - [x] OSX support - - [ ] column family operations - - [ ] LRU cache - - [ ] destroy/repair + - [ ] rustic merge operator - [ ] batch - [ ] iterator - - [ ] create/release snapshot - [ ] range - - [ ] rustic merge operator + - [ ] create/release snapshot + - [ ] column family operations - [ ] compaction filter, style + - [ ] LRU cache + - [ ] destroy/repair - [ ] comparator - [ ] slicetransform - - [ ] logger - [ ] windows support Feedback and pull requests welcome! diff --git a/src/rocksdb.rs b/src/rocksdb.rs index 314e283..4271722 100644 --- a/src/rocksdb.rs +++ b/src/rocksdb.rs @@ -224,7 +224,7 @@ pub fn open(path: String, create_if_missing: bool) -> Result { let cpath_ptr = cpath.as_ptr(); //TODO test path here, as if rocksdb fails it will just crash the - // process currently + // process currently let err = 0 as *mut i8; let db = rocksdb_ffi::rocksdb_open(opts, cpath_ptr, err);