/* -*- mode: C; c-basic-offset: 4 -*- */ #ident "Copyright (c) 2007, 2008 Tokutek Inc. All rights reserved." #include "includes.h" #include "test.h" static const char fname[]= __FILE__ ".brt"; static TOKUTXN const null_txn = 0; static DB * const null_db = 0; static int save_data (ITEMLEN UU(keylen), bytevec UU(key), ITEMLEN vallen, bytevec val, void *v) { assert(key!=NULL); void **vp = v; *vp = toku_memdup(val, vallen); return 0; } // Verify that different cursors return different data items when a DBT is initialized to all zeros (no flags) // Note: The BRT test used to implement DBTs with per-cursor allocated space, but there isn't any such thing any more // so this test is a little bit obsolete. static void test_multiple_brt_cursor_dbts(int n, DB *db) { if (verbose) printf("test_multiple_brt_cursors:%d %p\n", n, db); int r; CACHETABLE ct; BRT brt; BRT_CURSOR cursors[n]; unlink_file_and_bit(fname); r = toku_brt_create_cachetable(&ct, 0, ZERO_LSN, NULL_LOGGER); assert(r==0); r = toku_open_brt(fname, 0, 1, &brt, 1<<12, ct, null_txn, toku_default_compare_fun, db); assert(r==0); int i; for (i=0; i