Index: trunk/phase3/maintenance/rebuildrecentchanges.php |
— | — | @@ -186,7 +186,7 @@ |
187 | 187 | 'rc_this_oldid' => 0, |
188 | 188 | 'rc_last_oldid' => 0, |
189 | 189 | 'rc_type' => RC_LOG, |
190 | | - 'rc_cur_id' => 'COALESCE(page_id, 0)', |
| 190 | + 'rc_cur_id' => $dbw->cascadingDeletes() ? 'page_id' : 'COALESCE(page_id, 0)', |
191 | 191 | 'rc_log_type' => 'log_type', |
192 | 192 | 'rc_log_action' => 'log_action', |
193 | 193 | 'rc_logid' => 'log_id', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -666,6 +666,7 @@ |
667 | 667 | * (bug 21085) list=deletedrevs no longer returns only one revision when |
668 | 668 | drcontinue param is passed |
669 | 669 | * (bug 21106) Deprecated parameters now tagged in action=paraminfo |
| 670 | +* (bug 13453) rebuildrecentchanges maintenance script works on PG again |
670 | 671 | |
671 | 672 | === Languages updated in 1.16 === |
672 | 673 | |