From b99cbd1d893ff0a730ab7187f409bcdf3c6f4aeb Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Wed, 16 Mar 2005 08:27:14 +0000 Subject: Bug 174295: ANSI SQL requires all columns in SELECT to be in GROUP BY, unless they are in "aggregate" functions Patch By Tomas Kopal r=joel, a=myk --- editmilestones.cgi | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'editmilestones.cgi') diff --git a/editmilestones.cgi b/editmilestones.cgi index e62dcc4cb..0edbd1897 100755 --- a/editmilestones.cgi +++ b/editmilestones.cgi @@ -310,8 +310,9 @@ if ($action eq 'del') { my $dbh = Bugzilla->dbh; my $sth = $dbh->prepare('SELECT count(bug_id), product_id, target_milestone - FROM bugs - GROUP BY product_id, target_milestone + FROM bugs ' . + $dbh->sql_group_by('product_id, + target_milestone') . ' HAVING product_id = ? AND target_milestone = ?'); -- cgit v1.2.3-24-g4f1b