public function failedQueryInInsert()
 {
     $mock = $this->getConnection();
     $mock->makeQueryFail(1205, 'Deadlock');
     $j = new Job();
     $j->setTitle('New job');
     $j->setValid_from(Date::now());
     $j->setExpire_at(null);
     $j->insert();
 }