提交 2a35baa0 编写于 作者: J Jamis Buck

Wrap :conditions in parentheses to prevent problems with OR's #1871


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2324 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 caaf40d5
*SVN*
* Wrap :conditions in parentheses to prevent problems with OR's #1871
* Allow the postgresql adapter to work with the SchemaDumper.
* Add ActiveRecord::SchemaDumper for dumping a DB schema to a pure-ruby file, making it easier to consolidate large migration lists and port database schemas between databases.
......
......@@ -68,7 +68,7 @@ def find(*args)
else
conditions = "#{@finder_sql}"
if sanitized_conditions = sanitize_sql(options[:conditions])
conditions << " AND #{sanitized_conditions}"
conditions << " AND (#{sanitized_conditions})"
end
options[:conditions] = conditions
......
......@@ -350,7 +350,7 @@ def find(*args)
return args.first if args.first.kind_of?(Array) && args.first.empty?
expects_array = args.first.kind_of?(Array)
conditions = " AND #{sanitize_sql(options[:conditions])}" if options[:conditions]
conditions = " AND (#{sanitize_sql(options[:conditions])})" if options[:conditions]
ids = args.flatten.compact.uniq
case ids.size
......
......@@ -20,14 +20,19 @@ def test_loading_with_one_association
assert post.comments.include?(comments(:greetings))
end
def test_loading_conditions_with_or
posts = authors(:david).posts.find(:all, :include => :comments, :conditions => "comments.body like 'Normal%' OR comments.type = 'SpecialComment'")
assert_nil posts.detect { |p| p.author_id != authors(:david).id },
"expected to find only david's posts"
end
def test_with_ordering
posts = Post.find(:all, :include => :comments, :order => "posts.id DESC")
assert_equal posts(:sti_habtm), posts[0]
assert_equal posts(:sti_post_and_comments), posts[1]
assert_equal posts(:sti_comments), posts[2]
assert_equal posts(:authorless), posts[3]
assert_equal posts(:thinking), posts[4]
assert_equal posts(:welcome), posts[5]
list = Post.find(:all, :include => :comments, :order => "posts.id DESC")
[:eager_other, :sti_habtm, :sti_post_and_comments, :sti_comments,
:authorless, :thinking, :welcome
].each_with_index do |post, index|
assert_equal posts(post), list[index]
end
end
def test_loading_with_multiple_associations
......@@ -48,7 +53,7 @@ def test_loading_with_no_associations
def test_eager_association_loading_with_belongs_to
comments = Comment.find(:all, :include => :post)
assert_equal 9, comments.length
assert_equal 10, comments.length
titles = comments.map { |c| c.post.title }
assert titles.include?(posts(:welcome).title)
assert titles.include?(posts(:sti_post_and_comments).title)
......
......@@ -3,9 +3,10 @@
require 'fixtures/topic'
require 'fixtures/entrant'
require 'fixtures/developer'
require 'fixtures/post'
class FinderTest < Test::Unit::TestCase
fixtures :companies, :topics, :entrants, :developers
fixtures :companies, :topics, :entrants, :developers, :posts
def test_find
assert_equal(topics(:first).title, Topic.find(1).title)
......@@ -311,6 +312,13 @@ def test_find_all_with_join
assert developer_names.include?('Jamis')
end
def test_find_by_id_with_conditions_with_or
assert_nothing_raised do
Post.find([1,2,3],
:conditions => "posts.id <= 3 OR posts.type = 'Post'")
end
end
def test_select_value
assert_equal "37signals", Company.connection.select_value("SELECT name FROM companies WHERE id = 1")
assert_nil Company.connection.select_value("SELECT name FROM companies WHERE id = -1")
......
......@@ -57,3 +57,9 @@ check_eager_sti_on_associations2:
post_id: 5
body: Special Type
type: SpecialComment
eager_other_comment1:
id: 11
post_id: 7
body: go crazy
type: SpecialComment
......@@ -39,3 +39,10 @@ sti_habtm:
title: habtm sti test
body: hello
type: Post
eager_other:
id: 7
author_id: 2
title: eager loading with OR'd conditions
body: hello
type: Post
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册