(bug 17581) Wrong index name in PostgreSQL's updater: was rc_timestamp_nobot, changed...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Fri, 20 Feb 2009 09:53:45 +0000 (09:53 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Fri, 20 Feb 2009 09:53:45 +0000 (09:53 +0000)
RELEASE-NOTES
maintenance/updaters.inc

index 5c65070..6e31017 100644 (file)
@@ -198,6 +198,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 17570) $wgMaxRedirects is now correctly respected when following
   redirects (was previously one more than $wgMaxRedirects)
 * (bug 16335) __NONEWSECTIONLINK__ magic word to suppress new section link.
+* (bug 17581) Wrong index name in PostgreSQL's updater: was rc_timestamp_nobot,
+  changed to rc_timestamp_bot
 
 == API changes in 1.15 ==
 * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions
index 2f75568..73fa03c 100644 (file)
@@ -1600,7 +1600,7 @@ function do_postgres_updates() {
                array("image",         "img_sha1",           "(img_sha1)"),
                array("oldimage",      "oi_sha1",            "(oi_sha1)"),
                array("revision",      "rev_text_id_idx",    "(rev_text_id)"),
-               array("recentchanges", "rc_timestamp_nobot", "(rc_timestamp) WHERE rc_bot = 0"),
+               array("recentchanges", "rc_timestamp_bot",   "(rc_timestamp) WHERE rc_bot = 0"),
                array("templatelinks", "templatelinks_from", "(tl_from)"),
                array("watchlist",     "wl_user",            "(wl_user)"),
        );