Prettify MessageCache::loadFromDB()-small query
authorBrad Jorsch <bjorsch@wikimedia.org>
Mon, 8 May 2017 17:57:13 +0000 (13:57 -0400)
committerBrad Jorsch <bjorsch@wikimedia.org>
Mon, 8 May 2017 17:57:13 +0000 (13:57 -0400)
Adjust the call so it uses JOIN...ON syntax rather than comma joins.

Bug: T164666
Change-Id: I93c8569620d543e9507d0adf1283443915f50d4b

includes/cache/MessageCache.php

index 5caa7d5..c992112 100644 (file)
@@ -515,15 +515,18 @@ class MessageCache {
 
                # Conditions to load the remaining pages with their contents
                $smallConds = $conds;
-               $smallConds[] = 'page_latest=rev_id';
-               $smallConds[] = 'rev_text_id=old_id';
                $smallConds[] = 'page_len <= ' . intval( $wgMaxMsgCacheEntrySize );
 
                $res = $dbr->select(
                        [ 'page', 'revision', 'text' ],
                        [ 'page_title', 'old_id', 'old_text', 'old_flags' ],
                        $smallConds,
-                       __METHOD__ . "($code)-small"
+                       __METHOD__ . "($code)-small",
+                       [],
+                       [
+                               'revision' => [ 'JOIN', 'page_latest=rev_id' ],
+                               'text' => [ 'JOIN', 'rev_text_id=old_id' ],
+                       ]
                );
 
                foreach ( $res as $row ) {