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
the source code seems don't have the corresponding case for assignment, only the TYPE_SQLTYPE have. code:
else if (sf->tokenvec[left].type == TYPE_COLLATE && sf->tokenvec[left+1].type == TYPE_BAREWORD) { if (strchr(sf->tokenvec[left+1].val, '_') != NULL) { sf->tokenvec[left+1].type = TYPE_SQLTYPE; left = 0; } ... }
doesn't have something like
sf->tokenvec[left].type = TYPE_COLLATE
The text was updated successfully, but these errors were encountered:
Hello! thanks for writing it. I'd would love a test case before commenting further (and of course a Pull Request!).
Sorry, something went wrong.
No branches or pull requests
the source code seems don't have the corresponding case for assignment, only the TYPE_SQLTYPE have.
code:
doesn't have something like
The text was updated successfully, but these errors were encountered: