aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/join_dependency/join_part.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2013-10-14 18:26:34 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2013-10-14 18:26:34 -0700
commita53c2beac42e0fea5dab9a334a066911beeba976 (patch)
tree9a9143fbd35e3edf6e68cd35d7609739a3f985ca /activerecord/lib/active_record/associations/join_dependency/join_part.rb
parenta3a6313c1b12b8b9c3a38ad8e07b9dd2344c433b (diff)
downloadrails-a53c2beac42e0fea5dab9a334a066911beeba976.tar.gz
rails-a53c2beac42e0fea5dab9a334a066911beeba976.tar.bz2
rails-a53c2beac42e0fea5dab9a334a066911beeba976.zip
move alias building to the table node
Diffstat (limited to 'activerecord/lib/active_record/associations/join_dependency/join_part.rb')
-rw-r--r--activerecord/lib/active_record/associations/join_dependency/join_part.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/associations/join_dependency/join_part.rb b/activerecord/lib/active_record/associations/join_dependency/join_part.rb
index 632571e2fe..2c4111e5ed 100644
--- a/activerecord/lib/active_record/associations/join_dependency/join_part.rb
+++ b/activerecord/lib/active_record/associations/join_dependency/join_part.rb
@@ -36,10 +36,6 @@ module ActiveRecord
children.each { |child| child.each(&block) }
end
- def aliased_table
- Arel::Nodes::TableAlias.new table, aliased_table_name
- end
-
# An Arel::Table for the active_record
def table
raise NotImplementedError