We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ddc47b commit dbaae64Copy full SHA for dbaae64
tests/sqlparser_mysql.rs
@@ -1976,10 +1976,10 @@ fn parse_qualified_identifiers_with_numeric_prefix() {
1976
Some(Statement::Query(q)) => match *q.body {
1977
SetExpr::Select(s) => match s.projection.last() {
1978
Some(SelectItem::UnnamedExpr(Expr::Value(ValueWithSpan {
1979
- value: Value::Number(n, _),
+ value,
1980
..
1981
}))) => {
1982
- assert_eq!("15e29", n);
+ assert_eq!(&number("15e29"), value);
1983
}
1984
proj => panic!("Unexpected projection: {:?}", proj),
1985
},
0 commit comments