En succès
A duré 16 ms.
Standard Output
2025-05-22 06:40:57 DEBUG DDLDeployer create table Vehicle(color int, id int not null, unique (id))
2025-05-22 06:40:57 DEBUG DDLDeployer create table Truck(id int not null, unique (id))
2025-05-22 06:40:57 DEBUG DDLDeployer create table Car(id int not null, model varchar(255), unique (id))
2025-05-22 06:40:57 DEBUG DDLDeployer alter table Truck add constraint FK_Truck_id_Vehicle_id foreign key(id) references Vehicle(id)
2025-05-22 06:40:57 DEBUG DDLDeployer alter table Car add constraint FK_Car
...[truncated 6256 chars]...
ck where id = ? | {1={Truck.id=o.c.s.i.PersistableIdentifier@2}}
2025-05-22 06:40:57 DEBUG SQLOperation Batching statement 2 times
2025-05-22 06:40:57 TRACE SQLOperation delete from Vehicle where id = ? | {1={Vehicle.id=o.c.s.i.PersistableIdentifier@1}, 2={Vehicle.id=o.c.s.i.PersistableIdentifier@2}}
2025-05-22 06:40:57 TRACE SQLOperation select count(*) as carCount from Vehicle where id = 1 | {}
2025-05-22 06:40:57 TRACE SQLOperation select count(*) as truckCount from Vehicle where id = 2 | {}