mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Prevent test_has_many_through_a_has_many_through_association_on_through_reflection failing for me due to ordering of the results
This commit is contained in:
@@ -84,14 +84,14 @@ class Author < ActiveRecord::Base
|
||||
has_many :favorite_authors, :through => :author_favorites, :order => 'name'
|
||||
|
||||
has_many :tagging, :through => :posts # through polymorphic has_one
|
||||
has_many :taggings, :through => :posts, :source => :taggings # through polymorphic has_many
|
||||
has_many :taggings, :through => :posts, :source => :taggings # through polymorphic has_many TODO: Why is the :source needed?
|
||||
has_many :tags, :through => :posts # through has_many :through (on source reflection + polymorphic)
|
||||
has_many :distinct_tags, :through => :posts, :source => :tags, :select => "DISTINCT tags.*", :order => "tags.name"
|
||||
has_many :post_categories, :through => :posts, :source => :categories
|
||||
|
||||
has_many :books
|
||||
has_many :subscriptions, :through => :books
|
||||
has_many :subscribers, :through => :subscriptions # through has_many :through (on through reflection)
|
||||
has_many :subscribers, :through => :subscriptions, :order => "subscribers.nick" # through has_many :through (on through reflection)
|
||||
has_many :distinct_subscribers, :through => :subscriptions, :source => :subscriber, :select => "DISTINCT subscribers.*", :order => "subscribers.nick"
|
||||
|
||||
has_one :essay, :primary_key => :name, :as => :writer
|
||||
|
||||
Reference in New Issue
Block a user