Remove duplicated space before `when matched`

Running `org.hibernate.orm.test.stateless.UpsertTest`:

Before -> `merge into "UpsertTest$Record" as t using (select cast(? as bigint) id, cast(? as varchar) message) as s on (t.id=s.id) when not matched then insert (id, message) values (s.id, s.message)  when matched then update set message=s.message`
After  -> `merge into "UpsertTest$Record" as t using (select cast(? as bigint) id, cast(? as varchar) message) as s on (t.id=s.id) when not matched then insert (id, message) values (s.id, s.message) when matched then update set message=s.message`
This commit is contained in:
Yanming Zhou 2024-08-20 17:02:45 +08:00 committed by Gavin King
parent 4cef240c5c
commit e407c53c86
2 changed files with 2 additions and 2 deletions