mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-23 01:50:35 +00:00
The `integrity_check` flag was first introduced as a parameter in `sstable::data_stream()` to support creating input streams with integrity checking. As such, it was defined in the sstable class. However, we also use this flag in the kl/mx full-scan readers, and, in a later patch, we will use it in `class sstable_set` as well. Move the definition into `types_fwd.hh` since it is no longer bound to the sstable class. Signed-off-by: Nikos Dragazis <nikolaos.dragazis@scylladb.com>