mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
b533ea01dd
git-svn-id: file:///svn/tokudb@1218 c7de825b-a66e-492c-adef-691d508d4ae1
9 lines
122 B
C++
9 lines
122 B
C++
#include <assert.h>
|
|
#include <db_cxx.h>
|
|
|
|
DbTxn::DbTxn(DB_TXN *txn)
|
|
: the_txn(txn)
|
|
{
|
|
txn->api_internal = this;
|
|
}
|
|
|