make the singleton value group by shipped with the engine actually work

pull/6827/head
Tim Felgentreff 14 years ago
parent 139bd7756d
commit fee9b1d0e3
  1. 5
      app/models/report/group_by/singleton_value.rb

@ -1,5 +1,10 @@
class Report::GroupBy
class SingletonValue < Base
dont_display!
def define_group(sql)
sql.select "1 as singleton_value"
sql.group_by "singleton_value"
end
end
end

Loading…
Cancel
Save