[Tarantool-patches] [PATCH 10/16] tx: introduce txn_stmt_destroy
Aleksandr Lyapunov
alyapunov at tarantool.org
Wed Jul 8 18:14:17 MSK 2020
From: Aleksandr Lyapunov <a.lyapunov at corp.mail.ru>
---
src/box/txn.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/box/txn.c b/src/box/txn.c
index 5964ca7..2bd44a3 100644
--- a/src/box/txn.c
+++ b/src/box/txn.c
@@ -121,7 +121,7 @@ txn_stmt_new(struct region *region)
}
static inline void
-txn_stmt_unref_tuples(struct txn_stmt *stmt)
+txn_stmt_destroy(struct txn_stmt *stmt)
{
if (stmt->old_tuple != NULL)
tuple_unref(stmt->old_tuple);
@@ -169,7 +169,7 @@ txn_rollback_to_svp(struct txn *txn, struct stailq_entry *svp)
assert(txn->n_applier_rows > 0);
txn->n_applier_rows--;
}
- txn_stmt_unref_tuples(stmt);
+ txn_stmt_destroy(stmt);
stmt->space = NULL;
stmt->row = NULL;
}
@@ -208,7 +208,7 @@ txn_free(struct txn *txn)
{
struct txn_stmt *stmt;
stailq_foreach_entry(stmt, &txn->stmts, next)
- txn_stmt_unref_tuples(stmt);
+ txn_stmt_destroy(stmt);
/* Truncate region up to struct txn size. */
region_truncate(&txn->region, sizeof(struct txn));
--
2.7.4
More information about the Tarantool-patches
mailing list