Home
last modified time | relevance | path

Searched refs:readoptionscopy (Results 1 – 4 of 4) sorted by relevance

/rocksdb-6.9/db_stress_tool/
Dbatched_ops_stress.cc123 ReadOptions readoptionscopy = readoptions; in TestGet() local
124 readoptionscopy.snapshot = db_->GetSnapshot(); in TestGet()
133 s = db_->Get(readoptionscopy, cfh, key_slices[i], &from_db); in TestGet()
156 db_->ReleaseSnapshot(readoptionscopy.snapshot); in TestGet()
185 ReadOptions readoptionscopy = readoptions; in TestMultiGet() local
186 readoptionscopy.snapshot = db_->GetSnapshot(); in TestMultiGet()
225 db_->ReleaseSnapshot(readoptionscopy.snapshot); in TestMultiGet()
259 ReadOptions readoptionscopy[10]; in TestPrefixScan() local
269 readoptionscopy[i] = readoptions; in TestPrefixScan()
270 readoptionscopy[i].snapshot = snapshot; in TestPrefixScan()
[all …]
Ddb_stress_test_base.cc820 ReadOptions readoptionscopy = read_opts; in TestIterate() local
821 readoptionscopy.snapshot = snapshot; in TestIterate()
826 readoptionscopy.total_order_seek = true; in TestIterate()
829 readoptionscopy.total_order_seek = false; in TestIterate()
830 readoptionscopy.auto_prefix_mode = true; in TestIterate()
845 readoptionscopy.iterate_upper_bound = &upper_bound; in TestIterate()
856 readoptionscopy.iterate_lower_bound = &lower_bound; in TestIterate()
886 if (readoptionscopy.iterate_upper_bound != nullptr && in TestIterate()
894 } else if (readoptionscopy.iterate_lower_bound != nullptr && in TestIterate()
909 if (readoptionscopy.iterate_upper_bound != nullptr) { in TestIterate()
[all …]
Dcf_consistency_stress.cc134 ReadOptions readoptionscopy = readoptions; in TestGet() local
135 readoptionscopy.snapshot = snapshot; in TestGet()
138 s = db_->Get(readoptionscopy, column_families_[rand_column_families[0]], in TestGet()
144 s = db_->Get(readoptionscopy, in TestGet()
/rocksdb-6.9/tools/
Ddb_bench_tool.cc5963 ReadOptions readoptionscopy = readoptions; in GetMany() local
5964 readoptionscopy.snapshot = db->GetSnapshot(); in GetMany()
5969 s = db->Get(readoptionscopy, key_slices[i], value); in GetMany()
5981 db->ReleaseSnapshot(readoptionscopy.snapshot); in GetMany()