Home
last modified time | relevance | path

Searched refs:GetForUpdate (Results 1 – 14 of 14) sorted by relevance

/rocksdb-6.9/utilities/transactions/
Doptimistic_transaction_test.cc89 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 …]
Dtransaction_test.cc298 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 …]
Dtransaction_base.h66 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()
Dtransaction_base.cc261 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
Dwrite_prepared_transaction_test.cc874 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/
Dtransaction.h253 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/
Dtransaction_example.cc110 s = txn->GetForUpdate(read_options, "abc", &value); in main()
155 s = txn->GetForUpdate(read_options, "y", &value); in main()
Doptimistic_transaction_example.cc96 s = txn->GetForUpdate(read_options, "abc", &value); in main()
152 s = txn->GetForUpdate(read_options, "y", &value); in main()
/rocksdb-6.9/docs/_posts/
D2017-09-28-rocksdb-5-8-released.markdown11 * `Transaction::Get` and `Transaction::GetForUpdate` variants with `PinnableSlice` added.
/rocksdb-6.9/test_util/
Dtransaction_test_util.cc107 s = txn->GetForUpdate(read_options, key, &value); in DBGet()
/rocksdb-6.9/utilities/
Denv_librados_test.cc1072 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/
Dtransaction.cc447 &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/
Dc.cc3998 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/
DHISTORY.md330GetForUpdate 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.