MCPcopy Create free account
hub / github.com/cruppstahl/upscaledb / construct_txn

Function construct_txn

python/src/python.cc:1134–1143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1132}
1133
1134static PyObject *
1135construct_txn(PyObject *self, PyObject *args)
1136{
1137 UpsTransaction *txn = PyObject_New(UpsTransaction, &UpsTransaction_Type);
1138 if (!txn)
1139 return (0);
1140
1141 txn->txn = 0;
1142 return (txn_begin(txn, args));
1143}
1144
1145static PyObject *
1146register_compare(PyObject *self, PyObject *args)

Callers

nothing calls this directly

Calls 1

txn_beginFunction · 0.85

Tested by

no test coverage detected