_coder_review_sql_select_count_warning()sites/all/modules/coder/coder_review/includes/coder_review_sql.inc, line 100
<?php
function _coder_review_sql_select_count_warning() {
return array(
'#warning' => t('You may not want to use SELECT COUNT(*), if all you want to do is check for the existance of any rows, rather than the actualy numer of rows.'),
'#link' => 'http://drupal.org/node/224333#select_count',
);
}
?>