-
Notifications
You must be signed in to change notification settings - Fork 41.1k
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
Wrong jOOQ exception translator with empty db name #44869
Comments
If desired, I can do a PR from my branch: |
It's been this way since the beginning: Lines 57 to 63 in a08b095
If we're going to change this, we'll have to consider when to do it. I wonder if there may be apps relying on the current behavior? |
I meant with spring core how the other modules like spring data or jdbc is using the chain. SQLErrorCodeSQLExceptionTranslator --> fallback to --> SQLExceptionSubclassTranslator --> fall back to --> SQLStateSQLExceptionTranslator
Do you think it's really breaking (unit test was not breaking), because in the the of the chain the last translator is the |
@wilkinsona if you'd like to be defensive in terms of avoiding runtime auto-detection of the database etc, it might be better to fall back to |
Here is a proposal for the change with a test case: |
If there is no db product name in jOOQ available the sql error state translator is used by default:
See:
https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jooq/DefaultExceptionTranslatorExecuteListener.java#L116
During discussion of this ticket, we figured out the translator chain is not correct.
Matching the core Spring fallback chain, it should using the
SQLErrorCodeSQLExceptionTranslator
for empty dbName.Also the javadoc from SQLErrorCodeSQLExceptionTranslator gives a hint not to use this a main translator:
SQLErrorCodeSQLExceptionTranslator
"This translator is commonly used as a fallback behind a primary translator such as SQLErrorCodeSQLExceptionTranslator or SQLExceptionSubclassTranslator.
"
So IMHO this line should changed to:
The text was updated successfully, but these errors were encountered: