We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, Vitess does not parse COLLATE correctly.
COLLATE
The following statement gets parsed correctly:-
create table x (e enum('red','yellow') collate 'utf8_bin' null default null)
but this one does not :-
create table x (e enum('red','yellow') null collate 'utf8_bin'
The text was updated successfully, but these errors were encountered:
GuptaManan100
Successfully merging a pull request may close this issue.
Overview of the Issue
Currently, Vitess does not parse
COLLATE
correctly.The following statement gets parsed correctly:-
but this one does not :-
The text was updated successfully, but these errors were encountered: