1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix sequence name with abstract classes.

This commit is contained in:
Edgars Beigarts 2011-12-04 18:05:54 +02:00
parent 91a3e92cc2
commit 82ae5c40ea
2 changed files with 12 additions and 2 deletions

View file

@ -721,10 +721,10 @@ module ActiveRecord #:nodoc:
end
def sequence_name
if superclass == Base
if base_class == self
@sequence_name ||= reset_sequence_name
else
(@sequence_name ||= nil) || superclass.sequence_name
(@sequence_name ||= nil) || base_class.sequence_name
end
end

View file

@ -1601,6 +1601,16 @@ class BasicsTest < ActiveRecord::TestCase
end
end
def test_sequence_name_with_abstract_class
ak = Class.new(ActiveRecord::Base)
ak.abstract_class = true
k = Class.new(ak)
k.table_name = "projects"
orig_name = k.sequence_name
return skip "sequences not supported by db" unless orig_name
assert_equal k.reset_sequence_name, orig_name
end
def test_count_with_join
res = Post.count_by_sql "SELECT COUNT(*) FROM posts LEFT JOIN comments ON posts.id=comments.post_id WHERE posts.#{QUOTED_TYPE} = 'Post'"