summaryrefslogtreecommitdiff
path: root/include/leveldb/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/leveldb/options.h')
-rw-r--r--include/leveldb/options.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/leveldb/options.h b/include/leveldb/options.h
index 97c6b0b..79bcdbb 100644
--- a/include/leveldb/options.h
+++ b/include/leveldb/options.h
@@ -26,7 +26,8 @@ enum CompressionType {
// NOTE: do not change the values of existing entries, as these are
// part of the persistent format on disk.
kNoCompression = 0x0,
- kSnappyCompression = 0x1
+ kSnappyCompression = 0x1,
+ kZstdCompression = 0x2,
};
// Options to control the behavior of a database (passed to DB::Open)