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.
IN ()must have at least one value in it – Positive May 1 '11 at 16:43