From 626ff7e79dca107f76e347c3e1ea9cdabbd9d679 Mon Sep 17 00:00:00 2001 From: steviez Date: Thu, 3 Feb 2022 02:12:38 -0600 Subject: [PATCH] fixup! Add constants for all supported properties (#599) --- src/properties.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/properties.rs b/src/properties.rs index 6fce4c6..7da34b5 100644 --- a/src/properties.rs +++ b/src/properties.rs @@ -19,7 +19,7 @@ pub const NUM_FILES_AT_LEVEL_PREFIX: &str = property!("num-files-at-level"); /// representation of a level number (e.g., "0"). Here, compression /// ratio is defined as uncompressed data size / compressed file size. /// Returns "-1.0" if no open files at level . -pub const COMPRESSION_RATIO_AT_LEVEL: &str = property!("rocksdb.compression-ratio-at-level"); +pub const COMPRESSION_RATIO_AT_LEVEL: &str = property!("compression-ratio-at-level"); /// "rocksdb.stats" - returns a multi-line string containing the data /// described by kCFStats followed by the data described by kDBStats.