# if a task has never completed, it will be missing from hobbit_view. We identify this via a full join
# on the view and look for a null field.
my$missing_tasks_query="select backup_task_id, backup_task.backup_task_name from backup_task natural join host full join hobbit_view using (backup_task_id) where host.hostname=? and hobbit_view.backup_task_name is null";
my$msg="$rows_for_this_host results logged for host but $required_rows_for_this_host backup tasks are configured. Check backup_log table: maybe there has not yet been a succesful backup?\n";