En succès
A duré 18 ms.
Standard Output
2024-09-21 20:33:12 DEBUG DDLDeployer create table AbstractVehicle(id int not null, unique (id))
2024-09-21 20:33:12 DEBUG DDLDeployer create table Car(id int not null, model varchar(255), color int, unique (id))
2024-09-21 20:33:12 DEBUG DDLDeployer create table Truck(id int not null, color int, unique (id))
2024-09-21 20:33:12 DEBUG DDLDeployer alter table Car add constraint FK_Car_id_AbstractVehicle_id foreign key(id) references AbstractVehicle(id)
2024-09-21 20:33:12 DEBUG DDLDeployer alter
...[truncated 6226 chars]...
024-09-21 20:33:12 DEBUG SQLOperation delete from AbstractVehicle where id = ? | {1={AbstractVehicle.id=o.c.s.i.PersistableIdentifier@1}, 2={AbstractVehicle.id=o.c.s.i.PersistableIdentifier@2}}
2024-09-21 20:33:12 DEBUG SQLOperation select count(*) as vehicleCount from abstractVehicle where id in (1, 2) | {}
2024-09-21 20:33:12 DEBUG SQLOperation select count(*) as carCount from car where id = 1 | {}
2024-09-21 20:33:12 DEBUG SQLOperation select count(*) as truckCount from car where id = 2 | {}