-
Notifications
You must be signed in to change notification settings - Fork 439
Fixed conversion of LocalDateTime and LocalTime to String in Bulk Copy #1640
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
Merged
+179
−14
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
David-Engel
reviewed
Aug 20, 2021
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.
We should also extend testBulkCopyDateTimePrecision added in #1559 to include data that this fix is covering.
src/main/java/com/microsoft/sqlserver/jdbc/SQLServerBulkCopy.java
Outdated
Show resolved
Hide resolved
AbductedNoah
previously approved these changes
Oct 28, 2021
David-Engel
approved these changes
Nov 5, 2021
lilgreenbird
approved these changes
Nov 5, 2021
hi @joechu1 |
lilgreenbird
pushed a commit
to lilgreenbird/mssql-jdbc
that referenced
this pull request
Dec 1, 2021
…icrosoft#1640) * Use DateTimeFormatter to convert LocalDateTime and LocalTime to String * Streamlining toString calls and adding tests * Changed string pattern to match expected precision * Formatting * Formatting Co-authored-by: Joe Chu <5282594+joechu1@users.noreply.github.com> Co-authored-by: David Engel <v-davidengel@microsoft.com>
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When writing a LocalDateTime with bulk copy, the driver may return an error when second-of-minute and nano-of-second is 0:
When time units to the right of the minute are all 0's, the LocalDateTime.toString() will simplify the string format to uuuu-MM-dd'T'HH:mm, which SQL Server is not able to process due to the missing seconds. This PR changes the string conversion to use the DateTimeFormatter and ensures that it includes the necessary padding.
For example:
Note that this is very similar to PR #1485.