summaryrefslogtreecommitdiff
path: root/table/table_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'table/table_test.cc')
-rw-r--r--table/table_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/table/table_test.cc b/table/table_test.cc
index b3baf95..aea0697 100644
--- a/table/table_test.cc
+++ b/table/table_test.cc
@@ -791,7 +791,7 @@ static bool CompressionSupported(CompressionType type) {
if (type == kSnappyCompression) {
return port::Snappy_Compress(in.data(), in.size(), &out);
} else if (type == kZstdCompression) {
- return port::Zstd_Compress(in.data(), in.size(), &out);
+ return port::Zstd_Compress(/*level=*/1, in.data(), in.size(), &out);
}
return false;
}