From: Alexandre Emsenhuber Date: Fri, 20 Feb 2009 09:53:45 +0000 (+0000) Subject: (bug 17581) Wrong index name in PostgreSQL's updater: was rc_timestamp_nobot, changed... X-Git-Tag: 1.31.0-rc.0~42778 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=31278302f7495888e05a49af21726fc6ac9a3078;p=lhc%2Fweb%2Fwiklou.git (bug 17581) Wrong index name in PostgreSQL's updater: was rc_timestamp_nobot, changed to rc_timestamp_bot --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 5c65070674..6e31017a13 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 diff --git a/maintenance/updaters.inc b/maintenance/updaters.inc index 2f75568d75..73fa03c0b7 100644 --- a/maintenance/updaters.inc +++ b/maintenance/updaters.inc @@ -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)"), );