-
Notifications
You must be signed in to change notification settings - Fork 426
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
Execute stored procedures directly for RPC calls #2410
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2410 +/- ##
============================================
+ Coverage 49.88% 50.20% +0.32%
- Complexity 3827 3840 +13
============================================
Files 145 145
Lines 33360 33353 -7
Branches 5654 5654
============================================
+ Hits 16642 16746 +104
+ Misses 14349 14210 -139
- Partials 2369 2397 +28 ☔ View full report in Codecov by Sentry. |
src/test/java/com/microsoft/sqlserver/jdbc/callablestatement/CallableStatementTest.java
Show resolved
Hide resolved
Noticed some minor formatting issues, please run formatter on files. |
* RPC fix * Assertion index correction * Removed magic number * Removed login drop command * Code review changes * Formatting
…2427) * Fix calling procedures with output parameters by their four-part syntax (#2349) * Corrected four part syntax regression * JDK 8 correction * Execute stored procedures directly for RPC calls (#2410) * RPC fix * Assertion index correction * Removed magic number * Removed login drop command * Code review changes * Formatting * Test config changes
RPC calls were falling back to old logic of being wrapped in sp_executesql calls to execute. With the PR, moving forward, RPC calls are also directly executed.