mirror of
https://github.com/MariaDB/server.git
synced 2025-12-01 17:39:21 +03:00
137 lines
5.3 KiB
C++
137 lines
5.3 KiB
C++
/* -*- 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 flag settings for cursor isolation works
|
|
|
|
#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;
|
|
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);
|
|
|
|
DBT key,val;
|
|
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);
|
|
}
|
|
|
|
DB_TXN *txn_serializable, *txn_committed, *txn_uncommitted;
|
|
DBC* cursor = NULL;
|
|
r = env->txn_begin(env, NULL, &txn_serializable, DB_SERIALIZABLE); CKERR(r);
|
|
r = env->txn_begin(env, NULL, &txn_committed, DB_READ_COMMITTED); CKERR(r);
|
|
r = env->txn_begin(env, NULL, &txn_uncommitted, DB_READ_UNCOMMITTED); CKERR(r);
|
|
|
|
|
|
r = db->cursor(db, txn_serializable, &cursor, DB_SERIALIZABLE|DB_READ_COMMITTED); CKERR2(r, EINVAL);
|
|
r = db->cursor(db, txn_serializable, &cursor, DB_SERIALIZABLE|DB_READ_UNCOMMITTED); CKERR2(r, EINVAL);
|
|
r = db->cursor(db, txn_serializable, &cursor, DB_READ_UNCOMMITTED|DB_READ_COMMITTED); CKERR2(r, EINVAL);
|
|
|
|
|
|
r = db->cursor(db, txn_serializable, &cursor, 0); CKERR(r);
|
|
r = cursor->c_close(cursor); CKERR(r);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_serializable, &cursor, DB_SERIALIZABLE); CKERR(r);
|
|
r = cursor->c_close(cursor); CKERR(r);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_serializable, &cursor, DB_READ_COMMITTED); CKERR2(r, EINVAL);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_serializable, &cursor, DB_READ_UNCOMMITTED); CKERR2(r, EINVAL);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_committed, &cursor, 0); CKERR(r);
|
|
r = cursor->c_close(cursor); CKERR(r);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_committed, &cursor, DB_SERIALIZABLE); CKERR(r);
|
|
r = cursor->c_close(cursor); CKERR(r);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_committed, &cursor, DB_READ_COMMITTED); CKERR2(r, EINVAL);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_committed, &cursor, DB_READ_UNCOMMITTED); CKERR2(r, EINVAL);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_uncommitted, &cursor, 0); CKERR(r);
|
|
r = cursor->c_close(cursor); CKERR(r);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_uncommitted, &cursor, DB_SERIALIZABLE); CKERR(r);
|
|
r = cursor->c_close(cursor); CKERR(r);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_uncommitted, &cursor, DB_READ_COMMITTED); CKERR2(r, EINVAL);
|
|
cursor = NULL;
|
|
|
|
r = db->cursor(db, txn_uncommitted, &cursor, DB_READ_UNCOMMITTED); CKERR2(r, EINVAL);
|
|
cursor = NULL;
|
|
|
|
|
|
|
|
|
|
r = txn_serializable->commit(txn_serializable, 0); CKERR(r);
|
|
r = txn_committed->commit(txn_committed, 0); CKERR(r);
|
|
r = txn_uncommitted->commit(txn_uncommitted, 0); CKERR(r);
|
|
|
|
|
|
|
|
r = db->close(db, 0); CKERR(r);
|
|
r = env->close(env, 0); CKERR(r);
|
|
|
|
return 0;
|
|
}
|