-
Notifications
You must be signed in to change notification settings - Fork 469
Changes in preparation for 6.5.1 preview release #670
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
Changes from 16 commits
3599244
a310fd2
d761232
7cd5553
0e36df7
0389de1
f7c801b
6e49ba9
186c798
cbd2d00
188530d
d1b9f9e
f268319
53a7592
c18bb84
fb02e25
551773b
30927f1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. | |
|
|
||
| The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
|
|
||
| ## [6.5.1] Preview Release | ||
| ### Added | ||
| - Test cases for Date, Time, and Datetime2 data types. [#558](https://github.com/Microsoft/mssql-jdbc/pull/558) | ||
|
|
||
| ### Fixed Issues | ||
| - Fixed an issue where column type was not being returned correctly for spatial data types [#657](https://github.com/Microsoft/mssql-jdbc/pull/657) | ||
| - Fixed unnecessarily creating 2 connections when multiSubnetFailover is true [#662](https://github.com/Microsoft/mssql-jdbc/pull/662) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Fixed server side CPU Affinity problems caused by uneven connection distribution across NUMA Nodes when multiSubnetFailover is true" |
||
| - Fixed an issue where TDS Packets weren't being completely parsed after reading rows [#664](https://github.com/Microsoft/mssql-jdbc/pull/664) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Fixed an issue where Driver wasn't parsing TDS Packets completely to capture exceptions raised inside executed stored procedures" |
||
| - Fixed an issue where setMaxRows() would throw an exception if showplan_text is on [#666](https://github.com/Microsoft/mssql-jdbc/pull/666) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The issue isn't really exception from setMaxRows.. It should rather be: "Fixed an issue where driver throws exception when using setMaxRows() followed by query execution when SHOWPLAN_TEXT is ON"
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not really. Driver was throwing an exception on setMaxRows().
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's still change it, as the internal call of setMaxRows (that throws exception) is done when client calls executeQuery(). So to the client app, its exception from query execution. |
||
|
|
||
| ### Changed | ||
| - Removed unused imports which force users to import the ADAL4J library [#652](https://github.com/Microsoft/mssql-jdbc/pull/652) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. *forced |
||
|
|
||
| ## [6.5.0] Preview Release | ||
| ### Added | ||
| - Support for spatial datatypes [#642](https://github.com/Microsoft/mssql-jdbc/pull/642) | ||
|
|
||
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.
"Fixed an issue where ResultSetMetadata returned incorrect columnType for Geometry and Geography data types."