diff options
author | Nick Kallen <nkallen@nick-kallens-computer-2.local> | 2008-05-20 10:11:07 -0700 |
---|---|---|
committer | Nick Kallen <nkallen@nick-kallens-computer-2.local> | 2008-05-20 10:11:07 -0700 |
commit | 41f80e494af3ce7c8f3d6aa34f8303524a48373b (patch) | |
tree | 30b458021856fe436af8b17a457353356b286f1c /lib/arel/relations/operations/group.rb | |
parent | 2d021c641ab8c9215df863531cfb0d8ff8b9554a (diff) | |
download | rails-41f80e494af3ce7c8f3d6aa34f8303524a48373b.tar.gz rails-41f80e494af3ce7c8f3d6aa34f8303524a48373b.tar.bz2 rails-41f80e494af3ce7c8f3d6aa34f8303524a48373b.zip |
limits and offsets need to be externalized too. first draft
Diffstat (limited to 'lib/arel/relations/operations/group.rb')
-rw-r--r-- | lib/arel/relations/operations/group.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/relations/operations/group.rb b/lib/arel/relations/operations/group.rb index 22af2734a6..253c4215b6 100644 --- a/lib/arel/relations/operations/group.rb +++ b/lib/arel/relations/operations/group.rb @@ -8,7 +8,7 @@ module Arel @groupings = (groupings + (block_given?? [yield(self)] : [])).collect { |g| g.bind(relation) } end - def aggregation? + def externalizable? true end end |