Merge "Fix use of buildComparison() in uppercaseTitlesForUnicodeTransition.php"
This commit is contained in:
commit
44404d8ee9
1 changed files with 1 additions and 1 deletions
|
|
@ -609,7 +609,7 @@ class UppercaseTitlesForUnicodeTransition extends Maintenance {
|
|||
$res = $db->newSelectQueryBuilder()
|
||||
->select( $selectFields )
|
||||
->from( $table )
|
||||
->where( [ "$nsField = $ns", $like, $db->buildComparison( '>', $cont ) ] )
|
||||
->where( [ "$nsField = $ns", $like, $cont ? $db->buildComparison( '>', $cont ) : '1=1' ] )
|
||||
->orderBy( array_merge( [ $titleField ], $pkFields ) )
|
||||
->limit( $batchSize )
|
||||
->caller( __METHOD__ )->fetchResultSet();
|
||||
|
|
|
|||
Loading…
Reference in a new issue