Commit e012d266 authored by Marko Mäkelä's avatar Marko Mäkelä

row_undo(): Do not return an undefined value

Note: any error from row_undo() will lead to the server being
killed by InnoDB.
parent ebd0eab5
/***************************************************************************** /*****************************************************************************
Copyright (c) 1997, 2016, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 1997, 2016, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2017, MariaDB Corporation. Copyright (c) 2017, 2019, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software the terms of the GNU General Public License as published by the Free Software
...@@ -440,8 +440,9 @@ row_undo( ...@@ -440,8 +440,9 @@ row_undo(
case UNDO_UPDATE_TEMPORARY: case UNDO_UPDATE_TEMPORARY:
err = row_undo_mod(node, thr); err = row_undo_mod(node, thr);
break; break;
case UNDO_NODE_FETCH_NEXT: default:
ut_ad(!"wrong state"); ut_ad(!"wrong state");
err = DB_CORRUPTION;
} }
if (locked_data_dict) { if (locked_data_dict) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment