diff --git a/sstables/sstables.cc b/sstables/sstables.cc index d2d8b82dc2..4cbb33e1d3 100644 --- a/sstables/sstables.cc +++ b/sstables/sstables.cc @@ -1570,7 +1570,7 @@ input_stream sstable::data_stream_at(uint64_t pos, uint64_t buf_size) { } else { file_input_stream_options options; options.buffer_size = buf_size; - return make_file_input_stream(_data_file, 0, std::move(options)); + return make_file_input_stream(_data_file, pos, std::move(options)); } }