mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
8 lines
148 B
C++
8 lines
148 B
C++
#include "db_cxx.h"
|
|
|
|
int DbTxn::commit (u_int32_t flags) {
|
|
DB_TXN *txn = get_DB_TXN();
|
|
int ret = txn->commit(txn, flags);
|
|
return ret;
|
|
}
|