Rails 3
I think I've found a workaround.
category.articles.limit(3).count
=> 8
category.articles.find(:all, :limit => "3").count
=> 3
If I use the old Rails 2 methods, the system works correctly.
hmm… what happens if you use category.articles.limit(3).all.count