From ccb3f4b19831fe69eace7d8daba3b26739d95e6a Mon Sep 17 00:00:00 2001 From: Domas Mituzas Date: Tue, 29 Jul 2008 09:51:02 +0000 Subject: [PATCH] don't limit random range, no need, and not efficient --- includes/JobQueue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/JobQueue.php b/includes/JobQueue.php index 8bfd1b3e59..54d632cdbc 100644 --- a/includes/JobQueue.php +++ b/includes/JobQueue.php @@ -127,7 +127,7 @@ abstract class Job { // Failed, someone else beat us to it // Try getting a random row $row = $dbw->selectRow( 'job', array( 'MIN(job_id) as minjob', - 'MAX(job_id) as maxjob' ), "job_id >= $offset", __METHOD__ ); + 'MAX(job_id) as maxjob' ), __METHOD__ ); if ( $row === false || is_null( $row->minjob ) || is_null( $row->maxjob ) ) { // No jobs to get wfProfileOut( __METHOD__ ); -- 2.20.1