diff options
Diffstat (limited to 'storage/innobase/include/row0purge.h')
-rw-r--r-- | storage/innobase/include/row0purge.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/include/row0purge.h b/storage/innobase/include/row0purge.h index c4ddff4243c..1505fb9663a 100644 --- a/storage/innobase/include/row0purge.h +++ b/storage/innobase/include/row0purge.h @@ -105,7 +105,7 @@ public: upd_t* update; /*!< update vector for a clustered index record */ - dtuple_t* ref; /*!< NULL, or row reference to the next row to + const dtuple_t* ref; /*!< NULL, or row reference to the next row to handle */ dtuple_t* row; /*!< NULL, or a copy (also fields copied to heap) of the indexed fields of the row to @@ -172,7 +172,7 @@ public: @param[in] limit last transaction for which to skip */ void skip(table_id_t id, trx_id_t limit) { - DBUG_ASSERT(limit >= trx_id || !srv_safe_truncate); + DBUG_ASSERT(limit >= trx_id); unavailable_table_id = id; def_trx_id = limit; } |