summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/mdev-14846.opt
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-14846 InnoDB: assertion on trx->state because of deadlock error ignoredAleksey Midenkov2021-10-111-0/+1
On deadlock transaction is rolled back (and trx->state is cleared) but SELECT continued the loop because evaluate_join_record() ignored the error status returned from lower join evaluation. val_int() does not return error status so it is checked by thd->is_error(). Test case was created by Thirunarayanan Balathandayuthapani <thiru@mariadb.com>