Home
last modified time | relevance | path

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

/rocksdb-6.9/java/src/test/java/org/rocksdb/
DColumnFamilyTest.java664 ColumnFamilyHandle cf1 = null, cf2 = null, cf3 = null; in testByteCreateFolumnFamily() local
667 cf2 = db.createColumnFamily(new ColumnFamilyDescriptor(b1)); in testByteCreateFolumnFamily()
676 if (cf2 != null) { in testByteCreateFolumnFamily()
677 cf2.close(); in testByteCreateFolumnFamily()
688 ColumnFamilyHandle cf1 = null, cf2 = null; in testCFNamesWithZeroBytes() local
697 cf2 = db.createColumnFamily(new ColumnFamilyDescriptor(b1)); in testCFNamesWithZeroBytes()
705 if (cf2 != null) { in testCFNamesWithZeroBytes()
706 cf2.close(); in testCFNamesWithZeroBytes()
/rocksdb-6.9/utilities/write_batch_with_index/
Dwrite_batch_with_index_test.cc315 ColumnFamilyHandleImplDummy cf2(88, BytewiseComparator()); in TEST_F() local
319 batch.Put(&cf2, "aaa", ""); in TEST_F()
320 batch.Put(&cf2, "eee", ""); in TEST_F()
408 batch.Put(&cf2, "aaa", ""); in TEST_F()
409 batch.Delete(&cf2, "aaa"); in TEST_F()
410 batch.Put(&cf2, "aaa", "aaa"); in TEST_F()
411 batch.Put(&cf2, "eee", "eee"); in TEST_F()
573 batch.Put(&cf2, "zoo", "bar"); in TEST_F()
683 ColumnFamilyHandleImplDummy cf2(2, BytewiseComparator()); in TEST_F() local
725 batch.Put(&cf2, "zoo", "bar"); in TEST_F()
[all …]
/rocksdb-6.9/db/
Ddb_logical_block_size_cache_test.cc239 ColumnFamilyHandle* cf2 = nullptr; in TEST_F() local
242 ASSERT_OK(db->CreateColumnFamily(cf_options, "cf2", &cf2)); in TEST_F()
244 ASSERT_OK(db->DestroyColumnFamilyHandle(cf2)); in TEST_F()