-
-
Notifications
You must be signed in to change notification settings - Fork 238
fix: make SET system type case-insensitive #2702
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
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
a0a63dd
fix: make SET system type case-insensitive
fanyang01 104ac7a
Merge branch 'dolthub:main' into lowercase-sqlmode
fanyang01 366abe5
Use utf8mb4_0900_ai_ci in system SET types
fanyang01 11d3106
Follow MySQL's implementation
fanyang01 24f090d
Merge branch 'dolthub:main' into lowercase-sqlmode
fanyang01 632bf2c
latin1_swedish_ci is the default collation for latin1
fanyang01 0957ee5
Merge remote-tracking branch 'origin/lowercase-sqlmode' into lowercas…
fanyang01 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 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
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
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.
Uh oh!
There was an error while loading. Please reload this page.
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 shouldn't change all our system types to use that collation, and they should still use
collation_default. Also it should beutf8mb4_0900_ai_ciand notutf8mb4_ascii_general_ci.Instead,
NewSystemSetType()should take in asql.CollationIDand we should pass itsql.Collation_utf8mb4_0900_ai_ciforsql_modeingo-msql-server/sql/variables/system_variables.go.Fortunately,
NewSystemSetType()is only used in a few places, so there won't be too many changes.Uh oh!
There was an error while loading. Please reload this page.
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.
Hi @jycor, thanks for your review!
I'm uncertain about which collation should be used for other system variables. Could you please direct me to where I can find MySQL's implementation?Uh oh!
There was an error while loading. Please reload this page.
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.
I have learned the following facts from MySQL's source code:
protocol_compression_algorithmsis defined to be aSys_var_charptrand is validated using the case-insensitive collation oflatin1.sql_modeandlog_outputare defined asSys_var_setand are parsed using theto_upperfunction ofsystem_charset_info.