Skip to content

Commit

Permalink
fix fuzzer
Browse files Browse the repository at this point in the history
  • Loading branch information
cbi42 committed Mar 10, 2023
1 parent f507a58 commit 87a559e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fuzz/sst_file_writer_fuzzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ TableReader* NewTableReader(const std::string& sst_file_path,
if (s.ok()) {
ImmutableOptions iopts(options, cf_ioptions);
TableReaderOptions t_opt(iopts, /*prefix_extractor=*/nullptr, env_options,
cf_ioptions.internal_comparator);
cf_ioptions.internal_comparator,
0 /* block_protection_bytes_per_key */);
t_opt.largest_seqno = kMaxSequenceNumber;
s = options.table_factory->NewTableReader(t_opt, std::move(file_reader),
file_size, &table_reader,
Expand Down

0 comments on commit 87a559e

Please sign in to comment.