Skip to content

Commit 84aea6f

Browse files
author
Roman Borschel
committed
Address linter error.
1 parent dbaae64 commit 84aea6f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/sqlparser_mysql.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1975,10 +1975,7 @@ fn parse_qualified_identifiers_with_numeric_prefix() {
19751975
{
19761976
Some(Statement::Query(q)) => match *q.body {
19771977
SetExpr::Select(s) => match s.projection.last() {
1978-
Some(SelectItem::UnnamedExpr(Expr::Value(ValueWithSpan {
1979-
value,
1980-
..
1981-
}))) => {
1978+
Some(SelectItem::UnnamedExpr(Expr::Value(ValueWithSpan { value, .. }))) => {
19821979
assert_eq!(&number("15e29"), value);
19831980
}
19841981
proj => panic!("Unexpected projection: {:?}", proj),

0 commit comments

Comments
 (0)