mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
git-svn-id: file:///svn/tokudb@1431 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
0b0d470226
commit
7aa2cb58c4
2 changed files with 17 additions and 15 deletions
|
@ -32,3 +32,5 @@ check: $(TARGETS)
|
||||||
diff foo.out foo.expectout
|
diff foo.out foo.expectout
|
||||||
$(VGRIND) ./exceptions
|
$(VGRIND) ./exceptions
|
||||||
$(VGRIND) ./test_no_env
|
$(VGRIND) ./test_no_env
|
||||||
|
$(VGRIND) ./test_db_assoc3
|
||||||
|
$(VGRIND) ./test_db_assoc3 --more
|
||||||
|
|
|
@ -230,10 +230,10 @@ void close_databases (void) {
|
||||||
}
|
}
|
||||||
if (nc_key.get_data()) free(nc_key.get_data());
|
if (nc_key.get_data()) free(nc_key.get_data());
|
||||||
if (nc_data.get_data()) free(nc_data.get_data());
|
if (nc_data.get_data()) free(nc_data.get_data());
|
||||||
r = namedb->close(0); CKERR(r);
|
r = namedb->close(0); CKERR(r); delete namedb;
|
||||||
r = dbp->close(0); CKERR(r);
|
r = dbp->close(0); CKERR(r); delete dbp;
|
||||||
r = expiredb->close(0); CKERR(r);
|
r = expiredb->close(0); CKERR(r); delete expiredb;
|
||||||
r = dbenv->close(0); CKERR(r);
|
r = dbenv->close(0); CKERR(r); delete dbenv;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue