We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ded60dd commit bbe4671Copy full SHA for bbe4671
tests/sqlparser_mssql.rs
@@ -1260,8 +1260,8 @@ fn test_parse_raiserror() {
1260
message: Box::new(Expr::Value(Value::SingleQuotedString(
1261
"This is a test".to_string()
1262
))),
1263
- severity: Box::new(Expr::Value(Value::Number("16".to_string(), false))),
1264
- state: Box::new(Expr::Value(Value::Number("1".to_string(), false))),
+ severity: Box::new(Expr::Value(Value::Number("16".parse().unwrap(), false))),
+ state: Box::new(Expr::Value(Value::Number("1".parse().unwrap(), false))),
1265
arguments: vec![],
1266
options: vec![],
1267
}
0 commit comments