mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-13 15:32:03 +00:00
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:
parent
3619e89e9c
commit
c5bbfc33fd
4 changed files with 13 additions and 13 deletions
|
@ -38,7 +38,7 @@ fn parse_where_delete_statement() {
|
|||
op: Eq,
|
||||
right: Box::new(SQLValue(Value::Long(5))),
|
||||
},
|
||||
*selection.unwrap(),
|
||||
selection.unwrap(),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue