/* -*- mode: C; c-basic-offset: 4 -*- */ #ident "Copyright (c) 2008 Tokutek Inc. All rights reserved." /* Insert N duplicates into a BRT. * Delete them with a single delete. * Close the BRT. * Check to see that the BRT is empty. */ #include "includes.h" #include "test.h" #include static TOKUTXN const null_txn = 0; static DB * const null_db = 0; static void test_delete_all (void) { char fname[]= __FILE__ ".brt"; u_int32_t limit =200; unlink(fname); CACHETABLE ct; int r = toku_brt_create_cachetable(&ct, 0, ZERO_LSN, NULL_LOGGER); assert(r==0); BRT t; r = toku_brt_create(&t); assert(r==0); r = toku_brt_set_flags(t, TOKU_DB_DUP + TOKU_DB_DUPSORT); assert(r == 0); r = toku_brt_set_nodesize(t, 4096); assert(r == 0); r = toku_brt_open(t, fname, 1, 1, ct, null_txn, (DB*)0); assert(r==0); u_int32_t i; for (i=0; i