-
Notifications
You must be signed in to change notification settings - Fork 428
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
Blob fix #595
Blob fix #595
Conversation
Fills the contents of a blob and makes it availible for use after the RS or statement has been closed. Addresses the TDS issue from microsoft#567.
Codecov Report
@@ Coverage Diff @@
## dev #595 +/- ##
============================================
+ Coverage 46.37% 46.57% +0.19%
- Complexity 2216 2228 +12
============================================
Files 109 109
Lines 25411 25431 +20
Branches 4188 4190 +2
============================================
+ Hits 11784 11844 +60
+ Misses 11602 11548 -54
- Partials 2025 2039 +14
Continue to review full report at Codecov.
|
Fix to issue microsoft#611, where calling length() would close the stream.
pull from main
fix for automatic credential discarding
To debug a random mismatch error which can't be reproduced locally.
Kerb cons del
unexpected error message
Retry logic
pull main
Blob stream
pull 6.4.0
removed arraylist to avoid costly traversal. Blobs now fill anytime the resultset moves its cursor.
added tests which specifically test blob streams and behavior after the RS is closed.
No longer fills blobs on every checkClosed() call. Only attempts to fill them in scenarios where the cursor moves or another change of state which causes the RS to lose its active stream.
wasNull() moves the cursor for some reason, need to fill blobs.
testing expected behavior if users release a blob() object
Hi all, |
This PR will be in 6.5.0-preview, which will be released sometime in March, when ready. |
I have a question: I don't see a final release of 6.5. Did all the changes of 6.5 went into version 7.0? |
Fills the contents of a blob and makes it availible for use after the RS or statement has been closed. Addresses the TDS issue from #567.