forgot to close cursor

git-svn-id: file:///svn/mysql/tokudb-engine/src@5108 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Zardosht Kasheff 2013-04-17 00:01:43 -04:00 committed by Yoni Fogel
parent 95a7f058d2
commit 80c5c9ceec

View file

@ -1263,10 +1263,14 @@ int ha_tokudb::estimate_num_rows(DB* db, u_int64_t* num_rows) {
*num_rows = equal + greater;
error = 0;
cleanup:
if (do_commit) {
if (do_commit) {
transaction->commit(transaction, 0);
transaction = NULL;
}
if (crsr != NULL) {
crsr->c_close(crsr);
crsr = NULL;
}
return error;
}