diff options
author | Sergey Vojtovich <svoj@sun.com> | 2010-04-01 15:51:48 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2010-04-01 15:51:48 +0400 |
commit | d4c7bd2f40a81214589301aa6d517fc46a6af310 (patch) | |
tree | 3b30c2e4f25b24e045b9e78f6d48ef05e9ab1185 /storage/innodb_plugin/row | |
parent | 4ccf8bff5dfccc64da6baa9e9fb2ec745dcdf8f5 (diff) | |
download | mariadb-git-d4c7bd2f40a81214589301aa6d517fc46a6af310.tar.gz |
Applying InnoDB snapshot
Detailed revision comments:
r6672 | marko | 2010-02-11 13:01:18 +0200 (Thu, 11 Feb 2010) | 1 line
branches/zip: Introduce thr_is_recv().
Diffstat (limited to 'storage/innodb_plugin/row')
-rw-r--r-- | storage/innodb_plugin/row/row0umod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innodb_plugin/row/row0umod.c b/storage/innodb_plugin/row/row0umod.c index ec96c8fc845..674f0fbe09a 100644 --- a/storage/innodb_plugin/row/row0umod.c +++ b/storage/innodb_plugin/row/row0umod.c @@ -559,7 +559,7 @@ row_undo_mod_upd_del_sec( does not exist. However, this situation may only occur during the rollback of incomplete transactions. */ - ut_a(trx_is_recv(thr_get_trx(thr))); + ut_a(thr_is_recv(thr)); } else { err = row_undo_mod_del_mark_or_remove_sec( node, thr, index, entry); |