Home
last modified time | relevance | path

Searched refs:trailer (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/table/block_based/
Dblock_based_table_builder.cc732 char trailer[kBlockTrailerSize]; in WriteRawBlock() local
733 trailer[0] = type; in WriteRawBlock()
734 char* trailer_without_type = trailer + 1; in WriteRawBlock()
741 crc = crc32c::Extend(crc, trailer, 1); // Extend to cover block type in WriteRawBlock()
750 XXH32_update(state, trailer, 1); // Extend to cover block type in WriteRawBlock()
760 XXH64_update(state, trailer, 1); // Extend to cover block type in WriteRawBlock()
773 static_cast<char*>(trailer)); in WriteRawBlock()
774 r->io_status = r->file->Append(Slice(trailer, kBlockTrailerSize)); in WriteRawBlock()
/rocksdb-6.9/
DHISTORY.md446 * Fix a bug caused by not copying the block trailer with compressed SST file, direct IO, prefetcher…