-
Notifications
You must be signed in to change notification settings - Fork 605
Rust 2018 and clippy fixes #51
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
Conversation
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 requires Rust 1.31 (from last year) to build, but is otherwise compatible with the 2015-edition code.
https://rust-lang.github.io/rust-clippy/master/#if_same_then_else There was a bug in parsing `TIME` (not followed by {WITH | WITHOUT} TIME ZONE) -- that parsed as SQLType::Timestamp instead of SQLType::Time
https://rust-lang.github.io/rust-clippy/master/index.html#assertions_on_constants While I don't feel it's valid, fixing it lets us act on the other, more useful, lints.
To fix clippy warnings about assert!(true / false)
The name was confusing: SQLStatement::SQLSelect( SQLQuery { body: SQLSetExpr::Select(SQLSelect) } ) Fix the `large_enum_variant` clippy lint for `SQLStatement::SQLQuery` `SQLStatement::SQLCreateView`, and `SQLSetExpr::Select`, while we're changing the AST anyway https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
Pull Request Test Coverage Report for Build 154
💛 - Coveralls |
andygrove
approved these changes
Apr 27, 2019
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.
LGTM. Thanks @nickolay
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Most of the changes here are uninteresting, except for:
TIME
data type in 3df2223matches
crate to dev-dependencies in 08bbce8