Commit 7e5eb439 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

#3354 db-benchmark-test with unique checks sometimes fails due to duplicate key refs[t:3354]

git-svn-id: file:///svn/toku/tokudb@29252 c7de825b-a66e-492c-adef-691d508d4ae1
parent ee50b4cd
...@@ -33,8 +33,8 @@ enum { DEFAULT_ITEMS_TO_INSERT_PER_ITERATION = 1<<20 }; ...@@ -33,8 +33,8 @@ enum { DEFAULT_ITEMS_TO_INSERT_PER_ITERATION = 1<<20 };
enum { DEFAULT_ITEMS_PER_TRANSACTION = 1<<14 }; enum { DEFAULT_ITEMS_PER_TRANSACTION = 1<<14 };
static void insert (long long v); static void insert (long long v);
#define CKERR(r) if (r!=0) fprintf(stderr, "%s:%d error %d %s\n", __FILE__, __LINE__, r, db_strerror(r)); assert(r==0); #define CKERR(r) do { if (r!=0) fprintf(stderr, "%s:%d error %d %s\n", __FILE__, __LINE__, r, db_strerror(r)); assert(r==0); } while (0)
#define CKERR2(r,rexpect) if (r!=rexpect) fprintf(stderr, "%s:%d error %d %s\n", __FILE__, __LINE__, r, db_strerror(r)); assert(r==rexpect); #define CKERR2(r,rexpect) do { if (r!=rexpect) fprintf(stderr, "%s:%d error %d %s\n", __FILE__, __LINE__, r, db_strerror(r)); assert(r==rexpect); } while (0)
/* default test parameters */ /* default test parameters */
int keysize = sizeof (long long); int keysize = sizeof (long long);
...@@ -72,6 +72,7 @@ static int commitflags = 0; ...@@ -72,6 +72,7 @@ static int commitflags = 0;
static int redzone = 0; static int redzone = 0;
static int redzone_set = 0; static int redzone_set = 0;
static int do_optimize = 0; static int do_optimize = 0;
static int unique_checks = 0;
static int use_random = 0; static int use_random = 0;
enum { MAX_RANDOM_C = 16000057 }; // prime-numbers.org enum { MAX_RANDOM_C = 16000057 }; // prime-numbers.org
...@@ -394,6 +395,9 @@ static void insert (long long v) { ...@@ -394,6 +395,9 @@ static void insert (long long v) {
#else #else
r = EINVAL; r = EINVAL;
#endif #endif
if (unique_checks)
assert(r == 0 || r == DB_KEYEXIST);
else
CKERR(r); CKERR(r);
} }
else { else {
...@@ -402,6 +406,9 @@ static void insert (long long v) { ...@@ -402,6 +406,9 @@ static void insert (long long v) {
trace("pstart", __LINE__); trace("pstart", __LINE__);
r = db->put(db, tid, &kt, &vt, put_flags); r = db->put(db, tid, &kt, &vt, put_flags);
trace("pdone", __LINE__); trace("pdone", __LINE__);
if (unique_checks)
assert(r == 0 || r == DB_KEYEXIST);
else
CKERR(r); CKERR(r);
} }
} }
...@@ -661,7 +668,7 @@ static int test_main (int argc, char *const argv[]) { ...@@ -661,7 +668,7 @@ static int test_main (int argc, char *const argv[]) {
use_random = 1; use_random = 1;
} else if (strcmp(arg, "--unique_checks") == 0) { } else if (strcmp(arg, "--unique_checks") == 0) {
if (i+1 >= argc) return print_usage(argv[0]); if (i+1 >= argc) return print_usage(argv[0]);
int unique_checks = atoi(argv[++i]); unique_checks = atoi(argv[++i]);
if (unique_checks) if (unique_checks)
put_flags = DB_NOOVERWRITE; put_flags = DB_NOOVERWRITE;
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment