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

Compilation error in generated code when a MySQL procedure and function share the same name and signature #1908

Closed
lukaseder opened this issue Oct 29, 2012 · 0 comments

Comments

@lukaseder
Copy link
Member

This has been observed here:
http://stackoverflow.com/q/13125453/521799

jOOQ should be able to handle this situation, even if most databases do not allow for such "overloading"


Items used to reproduce this:

CREATE PROCEDURE fp1908(in p1 integer)
BEGIN
END
/

CREATE FUNCTION fp1908(p1 integer)
  RETURNS INT
BEGIN
  RETURN p1;
END
/
lukaseder added a commit that referenced this issue Oct 7, 2013
…d function share the same name and signature
lukaseder added a commit that referenced this issue Oct 7, 2013
…d function share the same name and signature - Regenerated MySQL schema
lukaseder added a commit that referenced this issue Oct 7, 2013
…d function share the same name and signature - Regenerated MariaDB schema
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