GNOME Bugzilla – Bug 407908
MySQL provider doesn't accept generated SQL
Last modified: 2007-03-27 13:10:23 UTC
Please describe the problem: I downloaded the 2.99.5 tarball and built and installed it. I'm now having problems with it. OS: SuSE 10.2 libgda: 2.99.5 built with --prefix= and --enable-debug mysql: 5.0.26 The following section of code: { GdaQuery* query; GdaQueryTarget* target; GdaQueryField* allFields; /* SELECT */ query = gda_query_new( be->pDict ); gda_query_set_query_type( query, GDA_QUERY_TYPE_SELECT ); /* FROM */ target = gda_query_target_new( query, table_name ); gda_query_add_target( query, target, NULL ); g_object_unref( G_OBJECT(target) ); /* all fields */ allFields = gda_query_field_all_new( query, table_name ); gda_query_field_set_visible( allFields, TRUE ); gda_entity_add_field( GDA_ENTITY(query), GDA_ENTITY_FIELD(allFields) ); g_object_unref( G_OBJECT(allFields) ); return query; } followed by: { GError* error = NULL; GdaObject* ret; ret = gda_query_execute( query, NULL, FALSE, &error ); if( error != NULL ) { printf( "SQL error: %s\n", error->message ); } return ret; } now produces this output: FAMOpen failed, FAMErrno=0 [;31;1mImplementation missing: database_constraints_update_list() in gda-dict-database.c line 1214 [;31;1mImplementation missing: database_constraints_update_list() in gda-dict-database.c line 1214 COMMAND> SELECT t1.* FROM lots AS t1 (Provider MySQL on cnx 0x840cb30) EVENT> 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 'FROM lots AS t1' at line 1 (on cnx 0x840cb30) SQL 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 'FROM lots AS t1' at line 1 COMMAND> SELECT t1.* FROM budgets AS t1 (Provider MySQL on cnx 0x840cb30) EVENT> 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 'FROM budgets AS t1' at line 1 (on cnx 0x840cb30) SQL 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 'FROM budgets AS t1' at line 1 I did not get this behavior with earlier versions of libgda. Steps to reproduce: I am developing a libgda-based backend for GnuCash. When I start GC running under gdb, I get these messages. Actual results: Expected results: Does this happen every time? Yes Other information:
Could you please try to discover exactly what version of libgda introduced this problem?
When I use 2.99.3, there is no problem. When I use 2.99.5, there is. I haven't tried 2.99.4, but the comment for 2.99.5 says that 2.99.4 was short lived and had a problem.
Could you please try 2.99.4 anyway, please. It would be helpful information.
2.99.4 has the problem. So: 2.99.3: no problem 2.99.4: problem 2.99.5: problem
Thanks. So, we need to try different checkouts from svn to discover when this bug was introduced, using svn checkout commands such as: svn co --revision {2007-01-31} svn+ssh://murrayc@svn.gnome.org/svn/libgda/trunk 2007-01-31 And we need a standalone test case, or you could test your code.
Rev 2825: no problem Rev 2826: problem
Created attachment 83953 [details] [review] libgda_2825_to_2826.patch This is the difference between those two revisions. Maybe the change in lexer.l caused it. That change is not mentioned in the ChangeLog.
CCing vivien, who made the change, in case he has an idea.
I just wrote a sample test program myself and it works fine on my local working SVN copy, I assume the problem comes from the lexer.l file which I have completely re-written locally to correct some in-depth bugs. Please test again once I have comitted my changes (which I can't do right now), or in the meanwhile, revert the modification made to lexer.l (sorry about the regression).
I probed into this a little bit more. The string "SELECT t1.* FROM lots AS t1" is being passed into gda_delimiter_split_sql(), and "SELECT t1. FROM lots AS t1" is coming back out. MySQL doesn't like this invalid SQL.
Presumably vivien has now checked in his local code. Is this still a problem with the code in svn?
Please respond so we can close this bug or fix it.
It works for me (SVN trunk)
I couldn't reproduce the problem with svn head - 2879. I think it is fixed.