Home
last modified time | relevance | path

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

/rocksdb-6.9/table/
Dblock_fetcher.cc183 if (compression_type_ == kNoCompression && in GetBlockContents()
201 compression_type_ = kNoCompression; in ReadBlockContents()
265 compression_type_ = get_block_compression_type(slice_.data(), block_size_); in ReadBlockContents()
267 if (do_uncompress_ && compression_type_ != kNoCompression) { in ReadBlockContents()
269 UncompressionContext context(compression_type_); in ReadBlockContents()
270 UncompressionInfo info(context, uncompression_dict_, compression_type_); in ReadBlockContents()
274 compression_type_ = kNoCompression; in ReadBlockContents()
Dblock_fetcher.h66 CompressionType get_compression_type() const { return compression_type_; } in get_compression_type()
93 ROCKSDB_NAMESPACE::CompressionType compression_type_; variable