i have an eager load query as such:
@groups = ReviewQuestionGroup.find(:all, :conditions => ["review_category_id = ?", @review.category.id], :order => 'review_question_groups.position, review_questions.position', :include => :questions)
in dev mode, this works fine... i get results like @groups[0].questions.length = 13. in production, i get length = 0 for all of the questions associations.
rails is issuing the same SQL statement for both modes, and issuing that SQL statement manually against the prod database gives the proper results. no errors or exceptions are being thrown or logged that i can see.
using rails 1.2.3, oracle 9i