Home
last modified time | relevance | path

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

/rocksdb-6.9/java/src/test/java/org/rocksdb/
DColumnFamilyTest.java193 int getResult = db.get("keyNotFound".getBytes(), outValue); in getWithOutValueAndCf() local
194 assertThat(getResult).isEqualTo(RocksDB.NOT_FOUND); in getWithOutValueAndCf()
196 getResult = db.get(columnFamilyHandleList.get(0), "key1".getBytes(), in getWithOutValueAndCf()
198 assertThat(getResult).isNotEqualTo(RocksDB.NOT_FOUND); in getWithOutValueAndCf()
201 getResult = db.get(columnFamilyHandleList.get(0), new ReadOptions(), in getWithOutValueAndCf()
203 assertThat(getResult).isNotEqualTo(RocksDB.NOT_FOUND); in getWithOutValueAndCf()
DRocksDBTest.java329 assertThat(getResult).isEqualTo(RocksDB.NOT_FOUND); in getWithOutValue()
331 getResult = db.get("key1".getBytes(), outValue); in getWithOutValue()
332 assertThat(getResult).isNotEqualTo(RocksDB.NOT_FOUND); in getWithOutValue()
335 getResult = db.get("key2".getBytes(), outValue); in getWithOutValue()
336 assertThat(getResult).isNotEqualTo(RocksDB.NOT_FOUND); in getWithOutValue()
349 int getResult = db.get(rOpt, "keyNotFound".getBytes(), in getWithOutValueReadOptions() local
351 assertThat(getResult).isEqualTo(RocksDB.NOT_FOUND); in getWithOutValueReadOptions()
353 getResult = db.get(rOpt, "key1".getBytes(), outValue); in getWithOutValueReadOptions()
354 assertThat(getResult).isNotEqualTo(RocksDB.NOT_FOUND); in getWithOutValueReadOptions()
357 getResult = db.get(rOpt, "key2".getBytes(), outValue); in getWithOutValueReadOptions()
[all …]