Commit 4d4c4928 authored by Dave Wells's avatar Dave Wells Committed by Yoni Fogel

remove assert checking for NULL DB until refs[t:2058] is fixed

git-svn-id: file:///svn/toku/tokudb@14964 c7de825b-a66e-492c-adef-691d508d4ae1
parent 32cfcc1d
......@@ -98,8 +98,12 @@ static inline u_int32_t myrandom (void) {
}
static __attribute__((__unused__)) int
int64_dbt_cmp (DB *db, const DBT *a, const DBT *b) {
assert(db && a && b);
int64_dbt_cmp (DB *db UU(), const DBT *a, const DBT *b) {
// assert(db && a && b);
assert(a);
assert(b);
// assert(db);
assert(a->size == sizeof(int64_t));
assert(b->size == sizeof(int64_t));
......
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