From d9d22c7596118051ba8908c163c797b90cca7aa3 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 3 Jul 2005 08:21:22 +0000 Subject: Fixed that single-table inheritance sub-classes couldn't be used to limit the result set with eager loading #1215 [Chris McGrath] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1619 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/fixtures/category.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'activerecord/test/fixtures/category.rb') diff --git a/activerecord/test/fixtures/category.rb b/activerecord/test/fixtures/category.rb index 751413c0db..822defa03e 100644 --- a/activerecord/test/fixtures/category.rb +++ b/activerecord/test/fixtures/category.rb @@ -1,3 +1,5 @@ class Category < ActiveRecord::Base has_and_belongs_to_many :posts end + +class SpecialCategory < Category; end; -- cgit v1.2.3