aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-12-02 15:56:55 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-12-02 15:56:55 -0800
commit9a3e29e126d9daf6175b4d2be50112d1c8771d17 (patch)
treeb5985576aee0779035ac7e885f04eda887ce6c1c /activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
parentb0fc912f1b829391760b50107dad365fa87c744f (diff)
downloadrails-9a3e29e126d9daf6175b4d2be50112d1c8771d17.tar.gz
rails-9a3e29e126d9daf6175b4d2be50112d1c8771d17.tar.bz2
rails-9a3e29e126d9daf6175b4d2be50112d1c8771d17.zip
remove calls to deprecated methods
Diffstat (limited to 'activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb')
-rw-r--r--activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb b/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
index 367104ec1b..e2ce9aefcf 100644
--- a/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
+++ b/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
@@ -76,9 +76,10 @@ module ActiveRecord
records.each { |record| @owner.connection.delete(interpolate_sql(sql, record)) }
else
relation = Arel::Table.new(@reflection.options[:join_table])
- relation.where(relation[@reflection.primary_key_name].eq(@owner.id).
+ stmt = relation.where(relation[@reflection.primary_key_name].eq(@owner.id).
and(relation[@reflection.association_foreign_key].in(records.map { |x| x.id }.compact))
- ).delete
+ ).compile_delete
+ @owner.connection.delete stmt.to_sql
end
end