txn: fix rollback in sub statement
There are two issues in the rollback code: - txn_rollback_stmt() rollbacks the current autocommit transaction even if it is called from a sub-statement. As a result, if a sub-statement (i.e. a statement called from a before_replace or on_replace trigger) fails (e.g. due to a conflict), it will trash the current transaction leading to a bad memory access upon returning from the trigger. - txn_begin_stmt() calls txn_rollback_stmt() on failure even if it did not instantiate the statement. So if it is called from a trigger and fails (e.g. due to nesting limit), it may trash the parent statement, again leading to a crash. Fix them both and add some tests. Closes #3127
Loading
Please register or sign in to comment