Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using rails 3.2.3 and ruby 1.9.3.

I am having issues deploying to heroku. The functionality I'm trying to achieve is working, but only locally, and I am using Postgres locally as well.

The querie is (i got more of these queries, but the symptoms are the same):

pesquisa=pesquisa.joins('INNER JOIN facilities_hotels ON hotels.id=facilities_hotels.hotel_id')
         pesquisa=pesquisa.where('facilities_hotels.facility_id in (:fc_list)', :fc_list => params[:fc]).uniq
         pesquisa=pesquisa.group('hotels.id','hotel.name',<other fields>').having('count(facility_id) = :tamanho', :tamanho => params[:fc].size)

Locally this is returning all the right stuff, but on Heroku, it returns no data at all.

Any tips?

Thanks very much in advance

share|improve this question
Is there data on heroku? – Jesse Wolgamott Jul 24 '12 at 14:11
Yes, there is data there. And all code is the same. I believe the syntax is correct as well, but I'm opened to suggestions :) – Silver Jul 24 '12 at 14:20
From your console run heroku run console and run some commands to make sure your data is there. Like Hotel.first, Facility.first, Facility.first.hotels etc. – Dty Jul 24 '12 at 14:46
I did like you instructed and the data was all there. I can create records with HABTM no problem, the data is all there. The query is what is giving the headache :/ – Silver Jul 24 '12 at 15:12
Only other thing I can think of is making sure you ran your migrations on Heroku. – Dty Jul 24 '12 at 15:51
show 3 more comments

1 Answer

up vote 0 down vote accepted

I can't believe. Among all the pushes and pulls from he git repo, somehow the IDs of the the the join table in the HABTM associations were different from their primary tables. Maybe someone used it for testing, I don't know. Anyways, thank you for your help, and indeed, the issue was the data being different.

Thank you again,

Regards

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.