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/utilities/compound.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/utilities/compound.rb')
-rw-r--r-- | lib/arel/relations/utilities/compound.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/relations/utilities/compound.rb b/lib/arel/relations/utilities/compound.rb index 23a55d4b5b..a91cec1127 100644 --- a/lib/arel/relations/utilities/compound.rb +++ b/lib/arel/relations/utilities/compound.rb @@ -2,7 +2,7 @@ module Arel class Compound < Relation attr_reader :relation hash_on :relation - delegate :joins, :join?, :inserts, :taken, :skipped, :name, :aggregation?, + delegate :joins, :join?, :inserts, :taken, :skipped, :name, :externalizable?, :column_for, :engine, :table, :table_sql, :to => :relation |