| 1453 | |
| 1454 | |
| 1455 | void DsMrr_impl::close_second_handler() |
| 1456 | { |
| 1457 | if (secondary_file) |
| 1458 | { |
| 1459 | secondary_file->extra(HA_EXTRA_NO_KEYREAD); |
| 1460 | secondary_file->ha_index_or_rnd_end(); |
| 1461 | secondary_file->ha_external_unlock(current_thd); |
| 1462 | secondary_file->ha_close(); |
| 1463 | delete secondary_file; |
| 1464 | secondary_file= NULL; |
| 1465 | } |
| 1466 | } |
| 1467 | |
| 1468 | |
| 1469 | void DsMrr_impl::dsmrr_close() |
nothing calls this directly
no test coverage detected