cfdbinfo type="tables" error on MySQL driver 8.0.11

Description

The cfdbinfo with a type of "tables" fails fails with a syntax error on MySQL driver 8.0.11, even when a 'pattern' argument is passed.

To duplicate:

cfdbinfo( name = "results" type = "Version", datasource = 'myDatasource', pattern='%' );

The reason is referenced in this bug report, which designates this as the expected behavior: https://bugs.mysql.com/bug.php?id=90887

The `tableNamePattern` argument may not be null when calling the `getTables` method of `java.sql.DatabaseMetaData`

Environment

None

Attachments

1

Activity

Show:

Michael Offner 20 March 2019 at 10:45

https://github.com/lucee/Lucee/commit/60295f964e75ab0cb381dcaa21eeaffb7a07102f

solving the issue reported by and makes sure we always have a pattern set (default %), if you have still an unrelated issue to this fix with cfdbinfo, please open another ticket and link it here.
normally a ticket should never point out more than one issue and for sure NOT address more than one issue. addressing more than one issue at once can produce hard to reverse engineering regression issues.

Michael Offner 20 March 2019 at 09:44

cannot reproduce the issue with Lucee 5.3.1

Michael Offner 20 March 2019 at 09:40

to the description:
i cannot reproduce with MySQL 5 or 8, also type "version" does NOT call getTables at all.
we will make sure 'tableNamePattern' is never passed as null or empty string.

Justin Carter 20 March 2019 at 05:58

Lucee 5.3 now bundles the MySQL Connector/J 8.0.15 driver which means this issue may become a critical problem for users who are upgrading as it's a significant change in behaviour. We've hit the same problem that Jonathan has described above;

  • Lucee 5.2.9.31 using MySQL Connector/J 5.1.40: calling cfdbinfo to introspect tables or columns will only return data for the database that is contained in the connection string

  • Lucee 5.3.1.95 using MySQL Connector/J 8.0.15: calling cfdbinfo to introspect tables or columns will return matches for all databases that the credentials in the connection string can access

The majority of our apps do not store the actual database name in a variable that can easily be accessed, so it's not trivial to add the "dbname" attribute to all calls to cfdbinfo.

The Connector/J docs for the connection string URL seem to indicate that the database name provided in the connection string should be the default database;
https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-reference-jdbc-url-format.html#idm139642450258592

Would it be appropriate for Lucee MySQL connections to call Connection.setCatalog() method to specify the default database if the driver is essentially no longer doing this for us, or might there be some other workaround?

In addition, it seems that MySQL Connector/J 8.0.15 and cfdbinfo are now significantly slower when run against the same database (regardless of the number of columns in a table, the performance is always the same).

  • Lucee 5.2.9.31 using MySQL Connector/J 5.1.40: Execution Time: 8ms

  • Lucee 5.3.1.95 using MySQL Connector/J 8.0.15: Execution Time: 128ms

For applications that do DB introspection on dozens of tables during startup (or at other times) this performance difference is almost a show stopper. Something that should take less than half a second might end up taking 7 or 8 seconds or more.

I haven't yet tried to use the older driver in Lucee 5.3 as I've run out of time for today.

P.S. There are a lot of unit tests that use the older MySQL Connector/J driver in the connection string, those might need to be updated, and could potentially help surface other issues that we might not have run into yet?

Fixed

Details

Assignee

Reporter

Priority

Fix versions

New Issue warning screen

Before you create a new Issue, please post to the mailing list first https://dev.lucee.org

Once the issue has been verified, one of the Lucee team will ask you to file an issue

Sprint

Created 25 July 2018 at 23:02
Updated 10 August 2023 at 07:59
Resolved 20 March 2019 at 15:05