-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Bump Microsoft SQL Server JDBC driver to 12.6.3 #41256
Bump Microsoft SQL Server JDBC driver to 12.6.3 #41256
Conversation
c1c2c1b
to
ac4b6a8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Let's see what CI has to say.
Something wrong in the native image build. I'll have a look... |
I have to admit, I am pretty lost. I can reproduce the error locally but the code the parser complains about basically hasn't been touched for years. I don't really see a difference between 12.6.1 and 12.6.2 that sounds like the error message. |
Error is:
https://github.com/quarkusio/quarkus/actions/runs/9547746401/job/26328201377 |
@zakkak do you have any hint on what's going on here? The error is not exactly clear? |
Indeed, the error message indicates that Looking at https://github.com/microsoft/mssql-jdbc/blob/17caf22234e632407499ad4e5a234c9da2de5aef/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerSecurityUtility.java#L228 the method is present in the source code and I also see it in the decompiled class file from the maven artifact. I tried attaching the debugger to see the root cause (and why it's not printed) and the issue is caused by:
|
For future reference, to debug this I set a breakpoint at https://github.com/graalvm/mandrel/blob/08389e1be8f9588c03ffa34a7820fab22fb3dcf1/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/phases/SharedGraphBuilderPhase.java#L248 and run:
Then I attach my IDE/Debugger to port 5005, when the breakpoint is hit all we need is to inspect the |
@zakkak thanks! And thanks for creating an issue on the GraalVM side to improve the error message. |
Signed-off-by: Sebastian Schuster <sebastian.schuster@bosch.io>
ac4b6a8
to
c704521
Compare
@zakkak The reference to |
Status for workflow
|
Thanks! |
Closes #41255