diff options
author | unknown <heikki@donna.mysql.fi> | 2001-05-03 18:26:19 +0300 |
---|---|---|
committer | unknown <heikki@donna.mysql.fi> | 2001-05-03 18:26:19 +0300 |
commit | f194547726d9b9a3998b08406a920c1ef73ee218 (patch) | |
tree | e03b1a925cf72d3892832a5afdfac8ab9bb85cdb /innobase/row/row0umod.c | |
parent | 2477d58f5baff278d093d24452a39ec4ea0eacd0 (diff) | |
download | mariadb-git-f194547726d9b9a3998b08406a920c1ef73ee218.tar.gz |
row0umod.c Partial fix to concurrent drop table and rollback by other user of rows in that table
row0uins.c Partial fix to concurrent drop table and rollback by other user of rows in that table
innobase/row/row0uins.c:
Partial fix to concurrent drop table and rollback by other user of rows in that table
innobase/row/row0umod.c:
Partial fix to concurrent drop table and rollback by other user of rows in that table
Diffstat (limited to 'innobase/row/row0umod.c')
-rw-r--r-- | innobase/row/row0umod.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/innobase/row/row0umod.c b/innobase/row/row0umod.c index 84e8d9ee5f5..70cf0fe5a32 100644 --- a/innobase/row/row0umod.c +++ b/innobase/row/row0umod.c @@ -589,6 +589,7 @@ row_undo_mod( /* It is already undone, or will be undone by another query thread, or table was dropped */ + trx_undo_rec_release(node->trx, node->undo_no); node->state = UNDO_NODE_FETCH_NEXT; return(DB_SUCCESS); |