aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorHemant Kumar <gethemant@gmail.com>2011-05-28 03:00:11 +0530
committerHemant Kumar <gethemant@gmail.com>2011-05-28 03:00:11 +0530
commited1a0672abb4d6e8aba3f6db7d90970f98a5f8c2 (patch)
treef8bcd60b9e97bf5a1c0a4bfeb1875bcbbb2501ee /activerecord/lib
parentd48add714d96695a0f5d73bd50696dc26c29c794 (diff)
downloadrails-ed1a0672abb4d6e8aba3f6db7d90970f98a5f8c2.tar.gz
rails-ed1a0672abb4d6e8aba3f6db7d90970f98a5f8c2.tar.bz2
rails-ed1a0672abb4d6e8aba3f6db7d90970f98a5f8c2.zip
delegate connection and column_hash calls directly to model
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/relation.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation.rb b/activerecord/lib/active_record/relation.rb
index d88e2693b6..e852f50d86 100644
--- a/activerecord/lib/active_record/relation.rb
+++ b/activerecord/lib/active_record/relation.rb
@@ -12,7 +12,7 @@ module ActiveRecord
# These are explicitly delegated to improve performance (avoids method_missing)
delegate :to_xml, :to_yaml, :length, :collect, :map, :each, :all?, :include?, :to => :to_a
- delegate :table_name, :quoted_table_name, :primary_key, :quoted_primary_key, :to => :klass
+ delegate :table_name, :quoted_table_name, :primary_key, :quoted_primary_key, :connection, :column_hash,:to => :klass
attr_reader :table, :klass, :loaded
attr_accessor :extensions, :default_scoped