summaryrefslogtreecommitdiff
path: root/storage/innobase/trx/trx0trx.cc
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-01-04 15:30:34 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2021-01-04 15:30:34 +0200
commitbd52f1a2dd1cb56c8bd9da9fc978f760b36ca701 (patch)
tree4af4b69e8943ce7fd5431e39904712cc099602ba /storage/innobase/trx/trx0trx.cc
parent3dabe637ca972d9139819848449f76867dd0f7ef (diff)
downloadmariadb-git-bd52f1a2dd1cb56c8bd9da9fc978f760b36ca701.tar.gz
Cleanup: Remove lock_number_of_rows_locked()
Let us access trx->lock.n_rec_locks directly.
Diffstat (limited to 'storage/innobase/trx/trx0trx.cc')
-rw-r--r--storage/innobase/trx/trx0trx.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/innobase/trx/trx0trx.cc b/storage/innobase/trx/trx0trx.cc
index 7ece8a40540..fb535991210 100644
--- a/storage/innobase/trx/trx0trx.cc
+++ b/storage/innobase/trx/trx0trx.cc
@@ -1761,7 +1761,7 @@ trx_print_low(
/*!< in: max query length to print,
or 0 to use the default max length */
ulint n_rec_locks,
- /*!< in: lock_number_of_rows_locked(&trx->lock) */
+ /*!< in: trx->lock.n_rec_locks */
ulint n_trx_locks,
/*!< in: length of trx->lock.trx_locks */
ulint heap_size)
@@ -1872,7 +1872,7 @@ trx_print_latched(
lock_sys.mutex_assert_locked();
trx_print_low(f, trx, max_query_len,
- lock_number_of_rows_locked(&trx->lock),
+ trx->lock.n_rec_locks,
UT_LIST_GET_LEN(trx->lock.trx_locks),
mem_heap_get_size(trx->lock.lock_heap));
}
@@ -1893,7 +1893,7 @@ trx_print(
ulint heap_size;
lock_sys.mutex_lock();
- n_rec_locks = lock_number_of_rows_locked(&trx->lock);
+ n_rec_locks = trx->lock.n_rec_locks;
n_trx_locks = UT_LIST_GET_LEN(trx->lock.trx_locks);
heap_size = mem_heap_get_size(trx->lock.lock_heap);
lock_sys.mutex_unlock();