We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rust-rocksdb/tests/cases/test_rocksdb_options.rs
Lines 345 to 374 in d8b7ff8
DB::open_cf(opts, path.path().to_str().unwrap(), vec!["default"]).unwrap(); why not DB::open_cf(opts, path.path().to_str().unwrap(), vec![("default", cf_opts)]).unwrap();
DB::open_cf(opts, path.path().to_str().unwrap(), vec!["default"]).unwrap();
DB::open_cf(opts, path.path().to_str().unwrap(), vec![("default", cf_opts)]).unwrap();
The text was updated successfully, but these errors were encountered:
Good catch, feel free to file a fixing PR.
This particular issue could be easily detected by clippy, but there're too many of them and we never get the time to fix them.
Sorry, something went wrong.
No branches or pull requests
rust-rocksdb/tests/cases/test_rocksdb_options.rs
Lines 345 to 374 in d8b7ff8
DB::open_cf(opts, path.path().to_str().unwrap(), vec!["default"]).unwrap();
why not
DB::open_cf(opts, path.path().to_str().unwrap(), vec![("default", cf_opts)]).unwrap();
The text was updated successfully, but these errors were encountered: