Fix Error Report
Brought to you by:
mattlewis
When trying to query a non-existent table, the error complains about the field request, not the fact that there is no table of the specified name (which is really the root problem).
For instance, 'select * from posts' returns this error if posts does not exist in the database:
EuSQL Error: OPERATION FAILED
'*' is not a valid field or table
The error should say
'posts' does not exist
or somesuch similar.
Logged In: YES
user_id=71012
Originator: YES
I see where an earlier bug fix notes that at the point in the code it could be either a field or table that's causing the problem... Is there not a way to differentiate?