diff options
Diffstat (limited to 'storage/tokudb/PerconaFT/src/tests/mvcc-read-committed.cc')
-rw-r--r-- | storage/tokudb/PerconaFT/src/tests/mvcc-read-committed.cc | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/storage/tokudb/PerconaFT/src/tests/mvcc-read-committed.cc b/storage/tokudb/PerconaFT/src/tests/mvcc-read-committed.cc new file mode 100644 index 00000000..eb25bda9 --- /dev/null +++ b/storage/tokudb/PerconaFT/src/tests/mvcc-read-committed.cc @@ -0,0 +1,96 @@ +/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4: +#ident "$Id$" +/*====== +This file is part of PerconaFT. + + +Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License, version 2, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with PerconaFT. If not, see <http://www.gnu.org/licenses/>. + +---------------------------------------- + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License, version 3, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with PerconaFT. If not, see <http://www.gnu.org/licenses/>. +======= */ + +#ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved." + +// Test that isolation works right for subtransactions. +// In particular, check to see what happens if a subtransaction has different isolation level from its parent. + +#include "test.h" + +const int envflags = DB_INIT_MPOOL|DB_CREATE|DB_THREAD |DB_INIT_LOCK|DB_INIT_LOG|DB_INIT_TXN|DB_PRIVATE; + +int test_main (int argc, char * const argv[]) { + parse_args(argc, argv); + int r; + toku_os_recursive_delete(TOKU_TEST_FILENAME); + toku_os_mkdir(TOKU_TEST_FILENAME, S_IRWXU+S_IRWXG+S_IRWXO); + DB_ENV *env; + r = db_env_create(&env, 0); CKERR(r); + env->set_errfile(env, stderr); + r = env->open(env, TOKU_TEST_FILENAME, envflags, S_IRWXU+S_IRWXG+S_IRWXO); CKERR(r); + + DB *db; + + DB_TXN* txna = NULL; + DB_TXN* txnb = NULL; + DB_TXN* txnc = NULL; + DB_TXN* txnb_child = NULL; + DB_TXN* txnc_child = NULL; + r = env->txn_begin(env, NULL, &txna, 0); CKERR(r); + r = db_create(&db, env, 0); CKERR(r); + r = db->open(db, txna, "foo.db", NULL, DB_BTREE, DB_CREATE, 0666); CKERR(r); + r = txna->commit(txna, 0); CKERR(r); + + + + r = env->txn_begin(env, NULL, &txnb, DB_TXN_SNAPSHOT); CKERR(r); + r = env->txn_begin(env, NULL, &txnc, DB_READ_COMMITTED); CKERR(r); + + DBT key,val; + r = env->txn_begin(env, NULL, &txna, 0); CKERR(r); + r = db->put(db, txna, dbt_init(&key, "a", 2), dbt_init(&val, "a", 2), 0); CKERR(r); + r = txna->commit(txna, 0); CKERR(r); + + // do a simple test to show that DB_TXN_SNAPSHOT and DB_READ_COMMITTED + // work differently + r = env->txn_begin(env, txnb, &txnb_child, DB_TXN_SNAPSHOT); CKERR(r); + r = env->txn_begin(env, txnc, &txnc_child, DB_READ_COMMITTED); CKERR(r); + r = db->get(db, txnb_child, &key, &val, 0); + CKERR2(r, DB_NOTFOUND); + r = db->get(db, txnc_child, &key, &val, 0); + CKERR(r); + + r = txnb_child->commit(txnb_child, 0); CKERR(r); + r = txnc_child->commit(txnc_child, 0); CKERR(r); + r = txnb->commit(txnb, 0); CKERR(r); + r = txnc->commit(txnc, 0); CKERR(r); + + r = db->close(db, 0); CKERR(r); + r = env->close(env, 0); CKERR(r); + + return 0; +} |