mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
More eager fixes
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1084 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
f8783abf0c
commit
edcaa2e5f7
2 changed files with 2 additions and 4 deletions
|
@ -65,9 +65,7 @@ module ActiveRecord
|
|||
load_target.select { |record| ids.include?(record.id) }
|
||||
end
|
||||
else
|
||||
original_conditions = options[:conditions] ? " AND #{options[:conditions]}" : ""
|
||||
options[:conditions] =
|
||||
"#{@association_class_primary_key_name} = #{@owner.quoted_id} #{@conditions ? " AND " + @conditions : ""}#{original_conditions}"
|
||||
options[:conditions] = @finder_sql + (options[:conditions] ? " AND #{options[:conditions]}" : "")
|
||||
@association_class.find(args.size == 1 ? args.first : args, options)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -34,7 +34,7 @@ module ActiveRecord
|
|||
# Project.find_all ["category = ?", category_name], "created ASC", [15, 20]
|
||||
def find_all(conditions = nil, orderings = nil, limit = nil, joins = nil)
|
||||
limit, offset = limit.is_a?(Array) ? limit : [ limit, nil ]
|
||||
find(:all, { :conditions => conditions, :order => orderings, :joins => joins, :limit => limit, :offset => offset})
|
||||
find(:all, :conditions => conditions, :order => orderings, :joins => joins, :limit => limit, :offset => offset)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue