Merge pull request #101 from benesch/merge-skew

Fix merge skew by implementing Hash for SQLValues
This commit is contained in:
Nikhil Benesch 2019-06-03 12:28:49 -04:00 committed by GitHub
commit 1931c76eb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -367,7 +367,7 @@ impl ToString for Fetch {
}
}
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, Hash)]
pub struct SQLValues(pub Vec<Vec<ASTNode>>);
impl ToString for SQLValues {