Lines Matching refs:table_options

328     BlockBasedTableOptions table_options;  in RunTest()  local
329 table_options.cache_index_and_filter_blocks = true; in RunTest()
337 table_options.persistent_cache = pcache; in RunTest()
338 table_options.block_cache = NewLRUCache(size_max); in RunTest()
339 table_options.block_cache_compressed = nullptr; in RunTest()
340 options.table_factory.reset(NewBlockBasedTableFactory(table_options)); in RunTest()
345 table_options.persistent_cache = pcache; in RunTest()
346 table_options.block_cache = NewLRUCache(size_max); in RunTest()
347 table_options.block_cache_compressed = NewLRUCache(size_max); in RunTest()
348 options.table_factory.reset(NewBlockBasedTableFactory(table_options)); in RunTest()
355 table_options.persistent_cache = pcache; in RunTest()
356 table_options.block_cache = NewLRUCache(size_max); in RunTest()
357 table_options.block_cache_compressed = NewLRUCache(size_max); in RunTest()
358 options.table_factory.reset(NewBlockBasedTableFactory(table_options)); in RunTest()
364 table_options.persistent_cache = pcache; in RunTest()
365 table_options.block_cache = nullptr; in RunTest()
366 table_options.block_cache_compressed = nullptr; in RunTest()
367 options.table_factory.reset(NewBlockBasedTableFactory(table_options)); in RunTest()
373 table_options.persistent_cache = pcache; in RunTest()
374 table_options.block_cache = nullptr; in RunTest()
375 table_options.block_cache_compressed = nullptr; in RunTest()
376 options.table_factory.reset(NewBlockBasedTableFactory(table_options)); in RunTest()
384 Insert(options, table_options, num_iter, &values); in RunTest()