From 025a06c429aa15672534ef3a1c7cb51dec89c29c Mon Sep 17 00:00:00 2001 From: "timeless%mozdev.org" <> Date: Tue, 24 Jul 2007 04:04:53 +0000 Subject: Bug 383595 "allows to" isn't correct r=mkanat a=mkanat --- Bugzilla/DB/Mysql.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Bugzilla/DB/Mysql.pm') diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index 582df3d54..25ee32b64 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -190,10 +190,10 @@ sub sql_position { sub sql_group_by { my ($self, $needed_columns, $optional_columns) = @_; - # MySQL allows to specify all columns as ANSI SQL requires, but also - # allow you to specify just minimal subset to get unique result. - # According to MySQL documentation, the less columns you specify - # the faster the query runs. + # MySQL allows you to specify the minimal subset of columns to get + # a unique result. While it does allow specifying all columns as + # ANSI SQL requires, according to MySQL documentation, the fewer + # columns you specify, the faster the query runs. return "GROUP BY $needed_columns"; } -- cgit v1.2.3-24-g4f1b