-
Notifications
You must be signed in to change notification settings - Fork 86
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
UUID break old code #1523
Merged
Merged
UUID break old code #1523
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
4557315
add err ErrIssue1501BadUUID
rekby e7513f3
Merge branch 'uuid-fix' into uuid-fix-break
rekby 4f3db9e
add deprecated comments
rekby a99a740
Merge branch 'uuid-fix' into uuid-fix-break
rekby b9900d2
remove some code
rekby 1c7ba7d
Merge branch 'uuid-fix' into uuid-fix-break
rekby c006b32
Merge branch 'uuid-fix' into uuid-fix-break
rekby 19c7ec8
Merge branch 'uuid-fix' into uuid-fix-break
rekby 8cf442a
some fixes
rekby 0b4572e
Merge branch 'uuid-fix' into uuid-fix-break
rekby 48e5604
fix tests
rekby 299d963
comment uuid in raw
rekby f1065ea
comment uuid in raw
rekby 3164744
comment old public code instead of remove
rekby 80b9f04
Merge branch 'uuid-fix' into uuid-fix-break
rekby dccc591
add changelog
rekby 76edf5b
Merge branch 'uuid-fix' into uuid-fix-break
rekby e6c4b1c
Merge branch 'uuid-fix' into uuid-fix-break
rekby d2f4931
fix param tests
rekby 0c2ae2c
Merge branch 'uuid-fix' into uuid-fix-break
rekby 8b59152
Merge branch 'uuid-fix' into uuid-fix-break
rekby 3726c67
remove unused
rekby 2b063e4
Merge branch 'uuid-fix' into uuid-fix-break
rekby c286a45
Merge branch 'master' into uuid-fix-break
rekby d98b602
fix scanner uuid
rekby bce0cf8
Merge branch 'master' into uuid-fix-break
rekby a33a5f2
fix for linter
rekby File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,8 +1,12 @@ | ||||||
* BREAK OLD STYLE WORK WITH UUID. See https://github.com/ydb-platform/ydb-go-sdk/issues/1501 for details. | ||||||
At the version you must explicit choose way for work with uuid: old with bug or new (fixed). | ||||||
|
||||||
## v3.86.1 | ||||||
* Fixed scan to optional uuid | ||||||
|
||||||
## v3.86.0 | ||||||
* Add workaround for bug in uuid send/receive from server. It is migration version. All native code and most database sql code worked with uuid continue to work. | ||||||
Dedicated version for migrate code for workaround/fix uuid bug. See https://github.com/ydb-platform/ydb-go-sdk/issues/1501 for details. | ||||||
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.
Suggested change
|
||||||
|
||||||
## v3.85.3 | ||||||
* Renamed `query.WithPoolID()` into `query.WithResourcePool()` | ||||||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package types | ||
|
||
import "github.com/ydb-platform/ydb-go-sdk/v3/internal/value" | ||
|
||
var ErrIssue1501BadUUID = value.ErrIssue1501BadUUID |
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
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.