From a5b64c84fc1012f09f26f3f12d30afe134df1cea Mon Sep 17 00:00:00 2001 From: jwollert Date: Thu, 7 Jul 2011 14:54:51 +0200 Subject: [PATCH] don't prefix group_fields by default to allow easier aliasing --- lib/report/group_by/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/report/group_by/base.rb b/lib/report/group_by/base.rb index 6471cdcefd..9969854bda 100644 --- a/lib/report/group_by/base.rb +++ b/lib/report/group_by/base.rb @@ -86,7 +86,7 @@ class Report::GroupBy def define_group(sql) sql.select all_select_fields - sql.group_by all_group_fields + sql.group_by all_group_fields(false) end end end \ No newline at end of file