-
Notifications
You must be signed in to change notification settings - Fork 579
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
Error on dangling NO
in CREATE SEQUENCE
options
#1104
Conversation
Fixes a bug where a `NO` meant for `NO CACHE` in create options would be consumed without being followed by `CACHE`. Fixes: `#1103`
LGTM |
1103
- disallow dangling NO in create sequence optionsNO
in create sequence options
NO
in create sequence optionsNO
in CREATE SEQUENCE
options
Pull Request Test Coverage Report for Build 7632957069Warning: This coverage report may be inaccurate.We've detected an issue with your CI configuration that might affect the accuracy of this pull request's coverage report.
💛 - Coveralls |
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.
Thank you @partiallytyped -- this looks great.
It looks like CI is failing due to needing to run cargo fmt
-- any chance you can run that and we can get this PR in?
Sure, give me a moment. |
No need -- I will do this as part of the merge process |
Thanks again @partiallytyped |
Fixes a bug where a
NO
meant forNO CACHE
in create options would be consumed without being followed byCACHE
.Changelog: Fixes: #1103