Index: trunk/phase3/maintenance/updaters.inc |
— | — | @@ -1600,7 +1600,7 @@ |
1601 | 1601 | array("image", "img_sha1", "(img_sha1)"), |
1602 | 1602 | array("oldimage", "oi_sha1", "(oi_sha1)"), |
1603 | 1603 | array("revision", "rev_text_id_idx", "(rev_text_id)"), |
1604 | | - array("recentchanges", "rc_timestamp_nobot", "(rc_timestamp) WHERE rc_bot = 0"), |
| 1604 | + array("recentchanges", "rc_timestamp_bot", "(rc_timestamp) WHERE rc_bot = 0"), |
1605 | 1605 | array("templatelinks", "templatelinks_from", "(tl_from)"), |
1606 | 1606 | array("watchlist", "wl_user", "(wl_user)"), |
1607 | 1607 | ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -198,6 +198,8 @@ |
199 | 199 | * (bug 17570) $wgMaxRedirects is now correctly respected when following |
200 | 200 | redirects (was previously one more than $wgMaxRedirects) |
201 | 201 | * (bug 16335) __NONEWSECTIONLINK__ magic word to suppress new section link. |
| 202 | +* (bug 17581) Wrong index name in PostgreSQL's updater: was rc_timestamp_nobot, |
| 203 | + changed to rc_timestamp_bot |
202 | 204 | |
203 | 205 | == API changes in 1.15 == |
204 | 206 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |