Don't Box<ASTNode> in SQLStatement

This used to be needed when it was a variant in the ASTNode enum itself.
This commit is contained in:
Nickolay Ponomarev 2019-01-31 15:30:06 +03:00
parent 3619e89e9c
commit c5bbfc33fd
4 changed files with 13 additions and 13 deletions

View file

@ -38,7 +38,7 @@ fn parse_where_delete_statement() {
op: Eq,
right: Box::new(SQLValue(Value::Long(5))),
},
*selection.unwrap(),
selection.unwrap(),
);
}