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
Describe the bug SET grammar doesn't account for CHARACTER SET and breaks when encountering that combination.
CHARACTER SET
To Reproduce
CREATE TABLE `table_notes` ( `id` int NOT NULL AUTO_INCREMENT, `notes` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL, );
set('A', 'B', 'C') works. Set defaults also works.
set('A', 'B', 'C')
The text was updated successfully, but these errors were encountered:
facepalm I will fix it today in 1.7.1 and will add test case, thank you!
Sorry, something went wrong.
@rayliverified didn't have time in previous days, sorry for that, fix released in 1.7.1, test added #289
Thank you 🥇
No branches or pull requests
Describe the bug
SET grammar doesn't account for
CHARACTER SET
and breaks when encountering that combination.To Reproduce
set('A', 'B', 'C')
works. Set defaults also works.The text was updated successfully, but these errors were encountered: