From da5e5c5f779355a2e99e63a90612cbeaeb0fc986 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Tue, 15 Jan 2013 13:01:13 -0200 Subject: Revert "Merge pull request #7983 from georgebrock/bug7950-squashed" This reverts commit 88a296dccc401da143d90cad54b693ff06bf2b58, reversing changes made to 666a7e34f553cef4c8878362eafc79c7e3f310c3. Conflicts: activerecord/CHANGELOG.md Reason: this has been resulting in some hard to track bugs and is introducing a possible breackage in a stable version. --- .../lib/active_record/associations/association_scope.rb | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'activerecord/lib/active_record/associations') diff --git a/activerecord/lib/active_record/associations/association_scope.rb b/activerecord/lib/active_record/associations/association_scope.rb index 226639ad37..f9cffa40c8 100644 --- a/activerecord/lib/active_record/associations/association_scope.rb +++ b/activerecord/lib/active_record/associations/association_scope.rb @@ -33,18 +33,6 @@ module ActiveRecord private - def column_for(table_name, column_name) - columns = alias_tracker.connection.schema_cache.columns_hash[table_name] - columns[column_name] - end - - def bind(scope, column, value) - substitute = alias_tracker.connection.substitute_at( - column, scope.bind_values.length) - scope.bind_values += [[column, value]] - substitute - end - def add_constraints(scope) tables = construct_tables @@ -79,9 +67,7 @@ module ActiveRecord conditions = self.conditions[i] if reflection == chain.last - column = column_for(table.table_name, key.to_s) - bind_val = bind(scope, column, owner[foreign_key]) - scope = scope.where(table[key].eq(bind_val)) + scope = scope.where(table[key].eq(owner[foreign_key])) if reflection.type scope = scope.where(table[reflection.type].eq(owner.class.base_class.name)) -- cgit v1.2.3