En succès
A duré 18 ms.
Standard Output
2024-09-15 09:39:40 DEBUG DDLDeployer create table Vehicle(color int, id int not null, unique (id))
2024-09-15 09:39:40 DEBUG DDLDeployer create table Car(id int not null, model varchar(255), unique (id))
2024-09-15 09:39:40 DEBUG DDLDeployer create table Truck(id int not null, unique (id))
2024-09-15 09:39:40 DEBUG DDLDeployer alter table Car add constraint FK_Car_id_Vehicle_id foreign key(id) references Vehicle(id)
2024-09-15 09:39:40 DEBUG DDLDeployer alter table Truck add constraint FK_Truck
...[truncated 6258 chars]...
ck where id = ? | {1={Truck.id=o.c.s.i.PersistableIdentifier@2}}
2024-09-15 09:39:40 DEBUG SQLOperation Batching statement 2 times
2024-09-15 09:39:40 DEBUG SQLOperation delete from Vehicle where id = ? | {1={Vehicle.id=o.c.s.i.PersistableIdentifier@1}, 2={Vehicle.id=o.c.s.i.PersistableIdentifier@2}}
2024-09-15 09:39:40 DEBUG SQLOperation select count(*) as carCount from Vehicle where id = 1 | {}
2024-09-15 09:39:40 DEBUG SQLOperation select count(*) as truckCount from Vehicle where id = 2 | {}