aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/relations/operations/group.rb
diff options
context:
space:
mode:
authorNick Kallen <nkallen@nick-kallens-computer-2.local>2008-05-20 10:11:07 -0700
committerNick Kallen <nkallen@nick-kallens-computer-2.local>2008-05-20 10:11:07 -0700
commit41f80e494af3ce7c8f3d6aa34f8303524a48373b (patch)
tree30b458021856fe436af8b17a457353356b286f1c /lib/arel/relations/operations/group.rb
parent2d021c641ab8c9215df863531cfb0d8ff8b9554a (diff)
downloadrails-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.rb2
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