| 5303 | |
| 5304 | |
| 5305 | extern "C" void thd_progress_end(MYSQL_THD thd) |
| 5306 | { |
| 5307 | if (thd->stmt_arena != thd->progress.arena) |
| 5308 | return; |
| 5309 | /* |
| 5310 | It's enough to reset max_counter to set disable progress indicator |
| 5311 | in processlist. |
| 5312 | */ |
| 5313 | thd->progress.max_counter= 0; |
| 5314 | thd->progress.arena= 0; |
| 5315 | } |
| 5316 | |
| 5317 | |
| 5318 | /** |
no outgoing calls
no test coverage detected