diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-30 11:24:39 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-30 15:31:22 -0700 |
commit | f261ef42cc2c8f0fc31d6e6f464bacd6ca9eb581 (patch) | |
tree | ac1d59aaac3d0dc0d9fc5d42fbcf092aa009f6d9 /activerecord/lib/active_record/associations | |
parent | 2ebc564394c5aec3d135e774dece6127147ba0c5 (diff) | |
download | rails-f261ef42cc2c8f0fc31d6e6f464bacd6ca9eb581.tar.gz rails-f261ef42cc2c8f0fc31d6e6f464bacd6ca9eb581.tar.bz2 rails-f261ef42cc2c8f0fc31d6e6f464bacd6ca9eb581.zip |
cache the plural name on the reflection so we do not pay pluralize costs on joins
Diffstat (limited to 'activerecord/lib/active_record/associations')
-rw-r--r-- | activerecord/lib/active_record/associations/join_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/join_helper.rb b/activerecord/lib/active_record/associations/join_helper.rb index 87e33891a5..d094a8def3 100644 --- a/activerecord/lib/active_record/associations/join_helper.rb +++ b/activerecord/lib/active_record/associations/join_helper.rb @@ -32,7 +32,7 @@ module ActiveRecord end def table_alias_for(reflection, join = false) - name = alias_tracker.pluralize(reflection.name, reflection.active_record) + name = reflection.plural_name.dup name << "_#{alias_suffix}" name << "_join" if join name |