Skip to content

Commit 87a559e

Browse files
committed
fix fuzzer
1 parent f507a58 commit 87a559e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fuzz/sst_file_writer_fuzzer.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ TableReader* NewTableReader(const std::string& sst_file_path,
9292
if (s.ok()) {
9393
ImmutableOptions iopts(options, cf_ioptions);
9494
TableReaderOptions t_opt(iopts, /*prefix_extractor=*/nullptr, env_options,
95-
cf_ioptions.internal_comparator);
95+
cf_ioptions.internal_comparator,
96+
0 /* block_protection_bytes_per_key */);
9697
t_opt.largest_seqno = kMaxSequenceNumber;
9798
s = options.table_factory->NewTableReader(t_opt, std::move(file_reader),
9899
file_size, &table_reader,

0 commit comments

Comments
 (0)