En succès
A duré 9 ms.
Standard Output
2024-08-30 07:43:33 DEBUG DDLDeployer create table Person(name varchar(255), id int not null, houseId int, house1Id int, unique (id))
2024-08-30 07:43:33 DEBUG DDLDeployer create table House(name varchar(255), id int not null, unique (id))
2024-08-30 07:43:33 DEBUG DDLDeployer alter table Person add constraint FK_Person_houseId_House_id foreign key(houseId) references House(id)
2024-08-30 07:43:33 DEBUG DDLDeployer alter table Person add constraint FK_Person_house1Id_House_id foreign key(house1I
...[truncated 1350 chars]...
ere id = ? | {1={House.name (U)=new main house name, House.id (W)=o.c.s.i.PersistedIdentifier@123}}
2024-08-30 07:43:33 DEBUG SQLOperation select Person.name as Person_name, Person.id as Person_id, house.name as house_name, house.id as house_id, house1.name as house1_name, house1.id as house1_id from Person left outer join House as house on Person.houseId = house.id left outer join House as house1 on Person.house1Id = house1.id where Person.id in (?) | {Person.id=o.c.s.i.PersistedIdentifier@42}