After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 407908 - MySQL provider doesn't accept generated SQL
MySQL provider doesn't accept generated SQL
Status: RESOLVED FIXED
Product: libgda
Classification: Other
Component: MySQL provider
2.99.x
Other All
: Normal normal
: ---
Assigned To: Rodrigo Moya
gnome-db Maintainers
Depends on:
Blocks:
 
 
Reported: 2007-02-14 16:20 UTC by Phil Longstaff
Modified: 2007-03-27 13:10 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
libgda_2825_to_2826.patch (44.97 KB, patch)
2007-03-05 11:18 UTC, Murray Cumming
none Details | Review

Description Phil Longstaff 2007-02-14 16:20:49 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:
Comment 1 Murray Cumming 2007-02-28 20:53:35 UTC
Could you please try to discover exactly what version of libgda introduced this problem? 
Comment 2 Phil Longstaff 2007-03-01 00:30:03 UTC
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.
Comment 3 Murray Cumming 2007-03-01 10:31:27 UTC
Could you please try 2.99.4 anyway, please. It would be helpful information.
Comment 4 Phil Longstaff 2007-03-02 03:26:15 UTC
2.99.4 has the problem.

So:
2.99.3: no problem
2.99.4: problem
2.99.5: problem
Comment 5 Murray Cumming 2007-03-02 10:53:38 UTC
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.
Comment 6 Phil Longstaff 2007-03-04 01:52:35 UTC
Rev 2825: no problem
Rev 2826: problem
Comment 7 Murray Cumming 2007-03-05 11:18:42 UTC
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.
Comment 8 Murray Cumming 2007-03-05 12:23:33 UTC
CCing vivien, who made the change, in case he has an idea.
Comment 9 malerba 2007-03-05 13:27:15 UTC
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).
Comment 10 Phil Longstaff 2007-03-07 02:55:14 UTC
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.
Comment 11 Murray Cumming 2007-03-16 18:17:45 UTC
Presumably vivien has now checked in his local code.

Is this still a problem with the code in svn?
Comment 12 Murray Cumming 2007-03-26 18:55:19 UTC
Please respond so we can close this bug or fix it.
Comment 13 malerba 2007-03-27 07:48:24 UTC
It works for me (SVN trunk)
Comment 14 Phil Longstaff 2007-03-27 12:54:22 UTC
I couldn't reproduce the problem with svn head - 2879.  I think it is fixed.