Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MySQLRoutineDefinition uses HSQLDB's INFORMATION_SCHEMA.PARAMETERS table, not MySQL's #10334

Closed
lukaseder opened this issue Jul 1, 2020 · 1 comment

Comments

@lukaseder
Copy link
Member

MySQLRoutineDefinition has a wrong import:

import static org.jooq.meta.hsqldb.information_schema.Tables.PARAMETERS;

It should be

import static org.jooq.meta.mysql.information_schema.Tables.PARAMETERS;

As these tables are part of the SQL standard, they are largely interchangable, but this might not be the case if we add a feature in the future.

@lukaseder
Copy link
Member Author

This issue currently has no effect, so a backport is not needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant