/* -*- 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 . ---------------------------------------- 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 . ======= */ #ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved." #include "test.h" #include #include #include #include #include #include static int db_put (DB *db, DB_TXN *txn, int k, int v) { DBT key, val; int r = db->put(db, txn, dbt_init(&key, &k, sizeof k), dbt_init(&val, &v, sizeof v), 0); return r; } /* create a tree with 15 of 16 leaf nodes each of the leaves should be about 1/2 full then almost fill leaf 0 and leaf 13 to almost full reopen the tree to flush all of leaves out of the cache create a cursor on leaf 0 to pull it in memory fill the root buffer 13 insert to leaf 0. this should cause leaf 0 to split, cause the root to expand to 16 children, but cause the root node to be too big. flush to leaf 16 causing another leaf split, causing the root to expand to 17 nodes, which causes the root to split the magic number where found via experimentation */ static void test_hsoc (int pagesize) { if (verbose) printf("test_hsoc:%d\n", pagesize); int npp = pagesize / 16; int n = npp + 13*npp/2; DB_TXN * const null_txn = 0; const char * const fname = "test.hsoc.ft_handle"; int r; toku_os_recursive_delete(TOKU_TEST_FILENAME); r=toku_os_mkdir(TOKU_TEST_FILENAME, S_IRWXU+S_IRWXG+S_IRWXO); assert(r==0); /* create the dup database file */ DB_ENV *env; r = db_env_create(&env, 0); assert(r == 0); r = env->open(env, TOKU_TEST_FILENAME, DB_CREATE+DB_PRIVATE+DB_INIT_MPOOL, 0); assert(r == 0); DB *db; r = db_create(&db, env, 0); assert(r == 0); r = db->set_pagesize(db, pagesize); assert(r == 0); r = db->open(db, null_txn, fname, "main", DB_BTREE, DB_CREATE, 0666); assert(r == 0); int i; /* force 15 leaves (14 splits) */ if (verbose) printf("force15\n"); for (i=0; iclose(db, 0); assert(r == 0); r = db_create(&db, env, 0); assert(r == 0); r = db->set_pagesize(db, pagesize); assert(r == 0); r = db->open(db, null_txn, fname, "main", DB_BTREE, 0, 0666); assert(r == 0); /* do a cursor get k=0 to pull in leaf 0 */ DBC *cursor; r = db->cursor(db, null_txn, &cursor, 0); assert(r == 0); DBT key, val; r = cursor->c_get(cursor, dbt_init_malloc(&key), dbt_init_malloc(&val), DB_FIRST); assert(r == 0); toku_free(key.data); toku_free(val.data); /* fill up buffer 2 in the root node */ for (i=0; i<216; i++) { r = db_put(db, null_txn, htonl(npp), i); assert(r == 0); } /* push a cmd to leaf 0 to cause it to split */ for (i=0; i<3; i++) { r = db_put(db, null_txn, htonl(0), 2*n+i); assert(r == 0); } r = cursor->c_close(cursor); assert(r == 0); r = db->close(db, 0); assert(r == 0); r = env->close(env, 0); assert(r == 0); } int test_main(int argc, char *const argv[]) { parse_args(argc, argv); test_hsoc(4096); return 0; }