comment_user_delete(&$edit, &$user, $category = NULL)
drupal/modules/comment/comment.module, line 701
Implementation of hook_user_delete().
function comment_user_delete(&$edit, &$user, $category = NULL) {
db_update('comment')
->fields(array('uid' => 0))
->condition('uid', $user->uid)
->execute();
db_update('node_comment_statistics')
->fields(array('last_comment_uid' => 0))
->condition('last_comment_uid', $user->uid)
->execute();
}