We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e880b5 commit 9371652Copy full SHA for 9371652
1 file changed
tests/sqlparser_postgres.rs
@@ -474,14 +474,12 @@ fn parse_execute() {
474
);
475
476
let stmt = pg_and_generic().verified_stmt("EXECUTE a(1, 't')");
477
-
478
- #[cfg(feature = "bigdecimal")]
479
assert_eq!(
480
stmt,
481
Statement::Execute {
482
name: "a".into(),
483
parameters: vec![
484
- Expr::Value(Value::Number(bigdecimal::BigDecimal::from(1))),
+ Expr::Value(number("1")),
485
Expr::Value(Value::SingleQuotedString("t".to_string()))
486
],
487
}
0 commit comments