Home
last modified time | relevance | path

Searched refs:RandomKeyType (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/db/
Ddb_table_properties_test.cc176 {Range(test::RandomKey(&rnd, 5, test::RandomKeyType::SMALLEST), in TEST_F()
177 test::RandomKey(&rnd, 5, test::RandomKeyType::LARGEST))}, in TEST_F()
183 {Range(test::RandomKey(&rnd, 5, test::RandomKeyType::LARGEST), in TEST_F()
184 test::RandomKey(&rnd, 5, test::RandomKeyType::SMALLEST))}, in TEST_F()
191 {Range(test::RandomKey(&rnd, 5, test::RandomKeyType::MIDDLE), in TEST_F()
192 test::RandomKey(&rnd, 5, test::RandomKeyType::LARGEST))}, in TEST_F()
/rocksdb-6.9/test_util/
Dtestutil.cc47 std::string RandomKey(Random* rnd, int len, RandomKeyType type) { in RandomKey()
56 case RandomKeyType::RANDOM: in RandomKey()
59 case RandomKeyType::LARGEST: in RandomKey()
62 case RandomKeyType::MIDDLE: in RandomKey()
65 case RandomKeyType::SMALLEST: in RandomKey()
Dtestutil.h48 enum RandomKeyType : char { RANDOM, LARGEST, SMALLEST, MIDDLE }; enum
50 RandomKeyType type = RandomKeyType::RANDOM);