| 3824 | int ha_check(THD *thd, HA_CHECK_OPT *check_opt); |
| 3825 | int ha_repair(THD* thd, HA_CHECK_OPT* check_opt); |
| 3826 | void ha_start_bulk_insert(ha_rows rows, uint flags= 0) |
| 3827 | { |
| 3828 | DBUG_ENTER("handler::ha_start_bulk_insert"); |
| 3829 | estimation_rows_to_insert= rows; |
| 3830 | bzero(©_info,sizeof(copy_info)); |
| 3831 | start_bulk_insert(rows, flags); |
| 3832 | DBUG_VOID_RETURN; |
| 3833 | } |
| 3834 | int ha_end_bulk_insert(); |
| 3835 | int ha_bulk_update_row(const uchar *old_data, const uchar *new_data, |
| 3836 | ha_rows *dup_key_found); |
no outgoing calls
no test coverage detected