2008-03-14 19:14:31 +00:00
|
|
|
/* -*- mode: C; c-basic-offset: 4 -*- */
|
|
|
|
#ident "Copyright (c) 2007, 2008 Tokutek Inc. All rights reserved."
|
|
|
|
|
2013-04-16 23:57:20 -04:00
|
|
|
#include "includes.h"
|
2008-03-14 19:14:31 +00:00
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
static const char fname[]= __FILE__ ".brt";
|
|
|
|
|
|
|
|
static TOKUTXN const null_txn = 0;
|
|
|
|
static DB * const null_db = 0;
|
|
|
|
|
|
|
|
// Verify that different cursors return different data items when a DBT is initialized to all zeros (no flags)
|
|
|
|
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];
|
|
|
|
|
2013-04-16 23:57:39 -04:00
|
|
|
unlink_file_and_bit(fname);
|
2008-03-14 19:14:31 +00:00
|
|
|
|
|
|
|
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<n; i++) {
|
|
|
|
DBT kbt,vbt;
|
|
|
|
char key[10],val[10];
|
|
|
|
snprintf(key, sizeof key, "k%04d", i);
|
2008-03-15 13:11:49 +00:00
|
|
|
snprintf(val, sizeof val, "v%04d", i);
|
2008-03-14 19:14:31 +00:00
|
|
|
r = toku_brt_insert(brt,
|
|
|
|
toku_fill_dbt(&kbt, key, strlen(key)),
|
|
|
|
toku_fill_dbt(&vbt, val, strlen(val)),
|
|
|
|
0);
|
|
|
|
assert(r == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0; i<n; i++) {
|
2008-03-15 19:06:39 +00:00
|
|
|
r = toku_brt_cursor(brt, &cursors[i], 0);
|
2008-03-14 19:14:31 +00:00
|
|
|
assert(r == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *ptrs[n];
|
|
|
|
for (i=0; i<n; i++) {
|
|
|
|
DBT kbt, vbt;
|
|
|
|
char key[10];
|
|
|
|
snprintf(key, sizeof key, "k%04d", i);
|
|
|
|
r = toku_brt_cursor_get(cursors[i],
|
|
|
|
toku_fill_dbt(&kbt, key, strlen(key)),
|
|
|
|
toku_init_dbt(&vbt),
|
|
|
|
DB_SET,
|
|
|
|
null_txn);
|
|
|
|
assert(r == 0);
|
|
|
|
ptrs[i] = vbt.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0; i<n; i++) {
|
|
|
|
int j;
|
|
|
|
for (j=i+1; j<n; j++) {
|
|
|
|
assert(ptrs[i]!=ptrs[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0; i<n; i++) {
|
|
|
|
r = toku_brt_cursor_close(cursors[i]);
|
|
|
|
assert(r == 0);
|
|
|
|
}
|
|
|
|
|
2013-04-16 23:57:38 -04:00
|
|
|
r = toku_close_brt(brt, 0, 0);
|
2008-03-14 19:14:31 +00:00
|
|
|
assert(r==0);
|
|
|
|
|
|
|
|
r = toku_cachetable_close(&ct);
|
|
|
|
assert(r==0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_brt_cursor(DB *db) {
|
|
|
|
test_multiple_brt_cursor_dbts(1, db);
|
|
|
|
test_multiple_brt_cursor_dbts(2, db);
|
|
|
|
test_multiple_brt_cursor_dbts(3, db);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-16 23:57:32 -04:00
|
|
|
int
|
|
|
|
test_main (int argc , const char *argv[]) {
|
2008-03-14 19:14:31 +00:00
|
|
|
default_parse_args(argc, argv);
|
|
|
|
|
|
|
|
DB a_db;
|
|
|
|
DB *db = &a_db;
|
|
|
|
test_brt_cursor(db);
|
|
|
|
|
|
|
|
toku_malloc_cleanup();
|
|
|
|
if (verbose) printf("test ok\n");
|
|
|
|
return 0;
|
|
|
|
}
|