| /rocksdb-6.9/utilities/transactions/ |
| D | optimistic_transaction_test.cc | 89 txn->GetForUpdate(read_options, "foo", &value); in TEST_P() 94 txn->GetForUpdate(read_options, "foo", &value); in TEST_P() 206 txn->GetForUpdate(read_options, "foo", &value); in TEST_P() 208 txn->GetForUpdate(read_options, "foo2", &value); in TEST_P() 458 txn->GetForUpdate(read_options, "AAA", &value); in TEST_P() 466 txn->GetForUpdate(read_options, "AAA", &value); in TEST_P() 488 txn->GetForUpdate(read_options, "AAA", &value); in TEST_P() 514 s = txn->GetForUpdate(read_options, "AAA", &value); in TEST_P() 517 s = txn->GetForUpdate(read_options, "BBB", &value); in TEST_P() 520 s = txn->GetForUpdate(read_options, "CCC", &value); in TEST_P() [all …]
|
| D | transaction_test.cc | 298 s = txn1->GetForUpdate(read_options, "foo", &value); in TEST_P() 340 s = txn2->GetForUpdate(read_options, "foo", &value); in TEST_P() 407 s = txn3->GetForUpdate(read_options, "foo", nullptr); in TEST_P() 412 s = txn3->GetForUpdate(read_options, "foo", nullptr); in TEST_P() 417 s = txn3->GetForUpdate(read_options, "foo", nullptr); in TEST_P() 2443 txn->GetForUpdate(read_options, "AAA", &value); in TEST_P() 2452 txn->GetForUpdate(read_options, "AAA", &value); in TEST_P() 3506 s = txn->GetForUpdate(read_options, "W", &value); in TEST_P() 3508 s = txn->GetForUpdate(read_options, "V", &value); in TEST_P() 3512 s = txn->GetForUpdate(read_options, "Y", &value); in TEST_P() [all …]
|
| D | transaction_base.h | 66 using Transaction::GetForUpdate; 67 Status GetForUpdate(const ReadOptions& options, 72 Status GetForUpdate(const ReadOptions& options, 77 Status GetForUpdate(const ReadOptions& options, const Slice& key, in GetForUpdate() function 80 return GetForUpdate(options, db_->DefaultColumnFamily(), key, value, in GetForUpdate()
|
| D | transaction_base.cc | 261 Status TransactionBaseImpl::GetForUpdate(const ReadOptions& read_options, in GetForUpdate() function in ROCKSDB_NAMESPACE::TransactionBaseImpl 286 Status TransactionBaseImpl::GetForUpdate(const ReadOptions& read_options, in GetForUpdate() function in ROCKSDB_NAMESPACE::TransactionBaseImpl
|
| D | write_prepared_transaction_test.cc | 874 ASSERT_TRUE(txn3->GetForUpdate(read_options, "foo", &value).IsBusy()); in TEST_P() 880 ASSERT_TRUE(txn->GetForUpdate(read_options, "foo", &value).IsBusy()); in TEST_P() 886 ASSERT_OK(txn2->GetForUpdate(read_options, "foo2", &value)); in TEST_P() 904 ASSERT_OK(txn4->GetForUpdate(read_options, "foo", &value)); in TEST_P()
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | transaction.h | 253 virtual Status GetForUpdate(const ReadOptions& options, 261 virtual Status GetForUpdate(const ReadOptions& options, 268 return GetForUpdate(options, column_family, key, null_str, exclusive, 271 auto s = GetForUpdate(options, column_family, key, 278 virtual Status GetForUpdate(const ReadOptions& options, const Slice& key,
|
| /rocksdb-6.9/examples/ |
| D | transaction_example.cc | 110 s = txn->GetForUpdate(read_options, "abc", &value); in main() 155 s = txn->GetForUpdate(read_options, "y", &value); in main()
|
| D | optimistic_transaction_example.cc | 96 s = txn->GetForUpdate(read_options, "abc", &value); in main() 152 s = txn->GetForUpdate(read_options, "y", &value); in main()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-09-28-rocksdb-5-8-released.markdown | 11 * `Transaction::Get` and `Transaction::GetForUpdate` variants with `PinnableSlice` added.
|
| /rocksdb-6.9/test_util/ |
| D | transaction_test_util.cc | 107 s = txn->GetForUpdate(read_options, key, &value); in DBGet()
|
| /rocksdb-6.9/utilities/ |
| D | env_librados_test.cc | 1072 s = txn->GetForUpdate(read_options, "abc", &value); in TEST_F() 1113 s = txn->GetForUpdate(read_options, "y", &value); in TEST_F()
|
| /rocksdb-6.9/java/rocksjni/ |
| D | transaction.cc | 447 &ROCKSDB_NAMESPACE::Transaction::GetForUpdate, txn, _1, in Java_org_rocksdb_Transaction_getForUpdate__JJ_3BIJZZ() 467 &ROCKSDB_NAMESPACE::Transaction::GetForUpdate, txn, _1, _2, _3, in Java_org_rocksdb_Transaction_getForUpdate__JJ_3BIZZ()
|
| /rocksdb-6.9/db/ |
| D | c.cc | 3998 txn->rep->GetForUpdate(options->rep, Slice(key, klen), &tmp, exclusive); in rocksdb_transaction_get_for_update() 4017 Status s = txn->rep->GetForUpdate(options->rep, column_family->rep, in rocksdb_transaction_get_for_update_cf()
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 330 …GetForUpdate is extended with a do_validate parameter with default value of true. If false it skip… 583 * `Transaction::Get` and `Transaction::GetForUpdate` variants with `PinnableSlice` added.
|