Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I've been using the rails admin (https://github.com/sferik/rails_admin/) gem for awhile now and its been working great.

In the last week I made some changes to my app, and continued using Rails admin - only to discover today, when visiting the dashboard page I receive the following error:

ActiveRecord::StatementInvalid in Rails admin/mainController#index

Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') and year = 2010 group by year, month' at line 1: select count(*) as number, year, month from histories where month IN () and year = 2010 group by year, month

I only noticed it today, because I had been using the rest of Rails Admin just fine, every other page seems to load without problem - and so I never had any reason to visit the dashboard.

Because it seems to be isolated to the dashboard - and isn't occurring within any model's page, I'm pretty confused as to where I should look to solve this issue?

Any suggestions would be great.

share|improve this question
your IN () must have at least one value in it – Positive May 1 '11 at 16:43
I'm not really sure what that means, considering the context – Elliot May 1 '11 at 17:36
1  
rails_admin has a bug in the RailsAdmin::History model, it isn't properly range checking its inputs and the result is invalid SQL. Track down the bug and send them a patch :) – mu is too short May 1 '11 at 17:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.