Skip to content

Commit

Permalink
When empty options passed to having clause having_values was [nil] bu…
Browse files Browse the repository at this point in the history
…t should be empty.
  • Loading branch information
Fyodor committed Apr 23, 2013
1 parent a56b150 commit 746a999
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 0 additions & 1 deletion activerecord/lib/active_record/relation/query_methods.rb
Expand Up @@ -551,7 +551,6 @@ def where!(opts = :chain, *rest) # :nodoc:
# Order.having('SUM(price) > 30').group('user_id')
def having(opts, *rest)
opts.blank? ? self : spawn.having!(opts, *rest)
spawn.having!(opts, *rest)
end

def having!(opts, *rest) # :nodoc:
Expand Down
8 changes: 8 additions & 0 deletions activerecord/test/cases/relations_test.rb
Expand Up @@ -1299,6 +1299,14 @@ def test_distinct
assert_equal ['Foo', 'Foo'], query.uniq(true).uniq(false).map(&:name)
end

def test_doesnt_add_having_values_if_options_are_blank
scope = Post.having('')
assert_equal [], scope.having_values

scope = Post.having([])
assert_equal [], scope.having_values
end

def test_references_triggers_eager_loading
scope = Post.includes(:comments)
assert !scope.eager_loading?
Expand Down

0 comments on commit 746a999

Please sign in to comment.