diff options
author | unknown <heikki@donna.mysql.fi> | 2001-08-08 21:35:43 +0300 |
---|---|---|
committer | unknown <heikki@donna.mysql.fi> | 2001-08-08 21:35:43 +0300 |
commit | a9a445437a702270a090b74d713e9524a98304b1 (patch) | |
tree | be01da7bb1eb02289c29905c40b06b7d13448262 /innobase/trx | |
parent | 9e4545b791f2a5ea9ae4c6aea22fd3ab4558230c (diff) | |
download | mariadb-git-a9a445437a702270a090b74d713e9524a98304b1.tar.gz |
trx0purge.c Fix a bug which might stop purge from running
buf0flu.c Add an include to fix compile problem in non-inlined version
innobase/buf/buf0flu.c:
Add an include to fix compile problem in non-inlined version
innobase/trx/trx0purge.c:
Fix a bug which might stop purge from running
Diffstat (limited to 'innobase/trx')
-rw-r--r-- | innobase/trx/trx0purge.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/innobase/trx/trx0purge.c b/innobase/trx/trx0purge.c index 032b3ffcf3b..afb83926fa3 100644 --- a/innobase/trx/trx0purge.c +++ b/innobase/trx/trx0purge.c @@ -678,6 +678,8 @@ trx_purge_choose_next_log(void) rseg = UT_LIST_GET_FIRST(trx_sys->rseg_list); + min_trx_no = ut_dulint_max; + min_rseg = NULL; while (rseg) { |