hello list! when including the same join-table for more than 3 times the aliasing fails while indexing. example: class Bar < ActiveRecord::Base has_many :foo end Bar.find(:all, :include => [:foo, :foo, :foo, :foo, :foo], :conditions => "... from the api the aliasing is supposed to be that way: (please correct me if i''m wrong) 1. "foo" (no aliasing needed for the 1st one) 2. "foo foo_bar" 3. "foo foo_bar_2" (begin indexing with 2) 4. "foo foo_bar_3" <- this is expected, this is what i get -> "foo foo_bar_2" 5. "foo foo_bar_4" <- this is expected, this is what i get -> "foo foo_bar_2" ... a.s.o. this error occurs on rails 1.16 with AR 1.14.4 can someone confirm this bug or should i upgrade to a newer version? neongrau -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---