Fix merge skew by implementing Hash for SQLValues

This commit is contained in:
Nikhil Benesch 2019-06-03 12:08:06 -04:00
parent b12fb34f3d
commit fa3cf732d5
No known key found for this signature in database
GPG key ID: F7386C5DEADABA7F

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 {