Lines Matching refs:table_
24 : table_(t), index_block_(std::move(index_block)) { in IndexReaderCommon()
25 assert(table_ != nullptr); in IndexReaderCommon()
36 const BlockBasedTable* table() const { return table_; } in table()
39 assert(table_ != nullptr); in internal_comparator()
40 assert(table_->get_rep() != nullptr); in internal_comparator()
42 return &table_->get_rep()->internal_comparator; in internal_comparator()
46 assert(table_ != nullptr); in index_has_first_key()
47 assert(table_->get_rep() != nullptr); in index_has_first_key()
48 return table_->get_rep()->index_has_first_key; in index_has_first_key()
52 assert(table_ != nullptr); in index_key_includes_seq()
53 assert(table_->get_rep() != nullptr); in index_key_includes_seq()
54 return table_->get_rep()->index_key_includes_seq; in index_key_includes_seq()
58 assert(table_ != nullptr); in index_value_is_full()
59 assert(table_->get_rep() != nullptr); in index_value_is_full()
60 return table_->get_rep()->index_value_is_full; in index_value_is_full()
64 assert(table_ != nullptr); in cache_index_blocks()
65 assert(table_->get_rep() != nullptr); in cache_index_blocks()
66 return table_->get_rep()->table_options.cache_index_and_filter_blocks; in cache_index_blocks()
81 const BlockBasedTable* table_;