test for create trigger + fixes

This commit is contained in:
pedrocarlo
2025-05-28 12:07:27 -03:00
parent a22d06cd66
commit 87b9540b4a
6 changed files with 172 additions and 108 deletions

View File

@@ -246,7 +246,7 @@ impl ToSqlString for Expr {
ret.push_str(&name1.0);
}
Expr::Raise(resolve_type, expr) => {
ret.push_str("RAISE (");
ret.push_str("RAISE(");
ret.push_str(&resolve_type.to_sql_string(context));
if let Some(expr) = expr {
ret.push_str(", ");