| 777 | |
| 778 | #ifndef DBUG_OFF |
| 779 | static int |
| 780 | dbug_simulate_tmp_error(rpl_group_info *rgi, THD *thd) |
| 781 | { |
| 782 | if (rgi->current_gtid.domain_id == 0 && rgi->current_gtid.seq_no == 100 && |
| 783 | rgi->retry_event_count == 4) |
| 784 | { |
| 785 | thd->clear_error(); |
| 786 | thd->get_stmt_da()->reset_diagnostics_area(); |
| 787 | my_error(ER_LOCK_DEADLOCK, MYF(0)); |
| 788 | return 1; |
| 789 | } |
| 790 | return 0; |
| 791 | } |
| 792 | #endif |
| 793 | |
| 794 |
no test coverage detected