We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d080cb3 commit fe0acf2Copy full SHA for fe0acf2
table/block_based/block_based_table_iterator.cc
@@ -1046,6 +1046,7 @@ void BlockBasedTableIterator::SeekMultiScan(const Slice* target) {
1046
if (multi_scan_->next_scan_idx >= multi_scan_->scan_opts->size()) {
1047
multi_scan_status_ = Status::InvalidArgument("Outside MultiScan range");
1048
} else if (!target) {
1049
+ assert(false);
1050
// start key must be set for multi-scan
1051
multi_scan_status_ = Status::InvalidArgument("No seek key for MultiScan");
1052
} else if (user_comparator_.CompareWithoutTimestamp(
0 commit comments