Merge pull request #6089 from frodsan/delete_all_limit

delete_all raise an error if a limit is provided - fixes #4979
This commit is contained in:
Aaron Patterson 2012-05-01 12:12:07 -07:00
commit 7d2df5fa62
2 changed files with 6 additions and 0 deletions

@ -390,6 +390,8 @@ def destroy(id)
# If you need to destroy dependent associations or call your <tt>before_*</tt> or
# +after_destroy+ callbacks, use the +destroy_all+ method instead.
def delete_all(conditions = nil)
raise ActiveRecordError.new("delete_all doesn't support limit scope") if self.limit_value
if conditions
where(conditions).delete_all
else

@ -688,6 +688,10 @@ def test_delete_all_loaded
assert davids.loaded?
end
def test_delete_all_limit_error
assert_raises(ActiveRecord::ActiveRecordError) { Author.limit(10).delete_all }
end
def test_select_argument_error
assert_raises(ArgumentError) { Developer.select }
end