En succès
A duré 15 ms.
Standard Output
2026-02-12 07:21:26 DEBUG DDLDeployer create table Car(id int not null, model varchar(255), unique (id))
2026-02-12 07:21:26 DEBUG DDLDeployer create table Truck(id int not null, unique (id))
2026-02-12 07:21:26 DEBUG DDLDeployer create table Vehicle(color int, id int not null, unique (id))
2026-02-12 07:21:26 DEBUG DDLDeployer alter table Car add constraint FK_Car_id_Vehicle_id foreign key(id) references Vehicle(id)
2026-02-12 07:21:26 DEBUG DDLDeployer alter table Truck add constraint FK_Truck
...[truncated 7649 chars]...
ck where id = ? | {1={Truck.id=o.c.s.i.PersistableIdentifier@2}}
2026-02-12 07:21:26 DEBUG SQLOperation Batching statement 2 times
2026-02-12 07:21:26 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}}
2026-02-12 07:21:26 TRACE SQLOperation select count(*) as carCount from Vehicle where id = 1 | {}
2026-02-12 07:21:26 TRACE SQLOperation select count(*) as truckCount from Vehicle where id = 2 | {}