-
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
Fixed CallableStatement default value regression #2452
Conversation
src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement.java
Fixed
Show fixed
Hide fixed
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2452 +/- ##
============================================
- Coverage 50.81% 50.73% -0.08%
+ Complexity 3882 3873 -9
============================================
Files 145 145
Lines 33423 33423
Branches 5677 5677
============================================
- Hits 16983 16957 -26
- Misses 13999 14024 +25
- Partials 2441 2442 +1 ☔ View full report in Codecov by Sentry. |
@@ -55,6 +55,8 @@ public class CallableStatementTest extends AbstractTest { | |||
.escapeIdentifier(RandomUtil.getIdentifier("CallableStatementTest_setNull_SP")); |
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.
Run formatter on file.
1123d68
to
652b764
Compare
* Fixed default value regression for cstmts * Adjusted regex * Test update * Updated test p2 * Updated regex
This reverts commit 9307051.
#2446