Procházet zdrojové kódy

remove unnessary status judge

main
lntotk před 4 roky
rodič
revize
10bc0f2595
1 změnil soubory, kde provedl 4 přidání a 6 odebrání
  1. +4
    -6
      table/table.cc

+ 4
- 6
table/table.cc Zobrazit soubor

@ -54,13 +54,11 @@ Status Table::Open(const Options& options, RandomAccessFile* file,
// Read the index block
BlockContents index_block_contents;
if (s.ok()) {
ReadOptions opt;
if (options.paranoid_checks) {
opt.verify_checksums = true;
}
s = ReadBlock(file, opt, footer.index_handle(), &index_block_contents);
ReadOptions opt;
if (options.paranoid_checks) {
opt.verify_checksums = true;
}
s = ReadBlock(file, opt, footer.index_handle(), &index_block_contents);
if (s.ok()) {
// We've successfully read the footer and the index block: we're

Načítá se…
Zrušit
Uložit