launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #06789
[Merge] lp:~stub/launchpad/postgresql-9.1 into lp:launchpad
Stuart Bishop has proposed merging lp:~stub/launchpad/postgresql-9.1 into lp:launchpad with lp:~stub/launchpad/postgresql-9.1-db as a prerequisite.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~stub/launchpad/postgresql-9.1/+merge/98443
= Summary =
Fix tests failing under PostgreSQL 9.1 again
== Proposed fix ==
== Pre-implementation notes ==
== Implementation details ==
== Tests ==
== Demo and Q/A ==
= Launchpad lint =
Checking for conflicts and issues in changed files.
Linting changed files:
lib/lp/bugs/model/bugtasksearch.py
--
https://code.launchpad.net/~stub/launchpad/postgresql-9.1/+merge/98443
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~stub/launchpad/postgresql-9.1 into lp:launchpad.
=== modified file 'lib/lp/bugs/model/bugtasksearch.py'
--- lib/lp/bugs/model/bugtasksearch.py 2012-02-21 02:24:04 +0000
+++ lib/lp/bugs/model/bugtasksearch.py 2012-03-20 16:10:35 +0000
@@ -128,7 +128,7 @@
# tag that comes first in alphabetic order.
BugTag.id == SQL("""
SELECT id FROM BugTag AS bt
- WHERE bt.bug=bug.id ORDER BY bt.name LIMIT 1
+ WHERE bt.bug=bug.id ORDER BY bt.tag LIMIT 1
"""))),
]
),