En succès
A duré 33 ms.
Standard Output
2025-03-27 07:13:33 DEBUG DDLDeployer create table Vehicle(id int not null, unique (id))
2025-03-27 07:13:33 DEBUG DDLDeployer create table Truck(id int not null, unique (id))
2025-03-27 07:13:33 DEBUG DDLDeployer create table Car(id int not null, unique (id))
2025-03-27 07:13:33 DEBUG DDLDeployer create table Person(name varchar(255), creationDate timestamp, modificationDate timestamp, id int not null, vehicleId int, unique (id))
2025-03-27 07:13:33 DEBUG DDLDeployer alter table Truck add const
...[truncated 16333 chars]...
leId = Vehicle.id left outer join Truck as Vehicle_Truck on Vehicle.id = Vehicle_Truck.id left outer join Car as Vehicle_Car on Vehicle.id = Vehicle_Car.id where Person.id in (?) | {Person.id=o.c.s.i.PersistableIdentifier@1}
2025-03-27 07:13:33 TRACE SQLOperation select Vehicle.id as Vehicle_id, Truck.id as Truck_id, Car.id as Car_id from Vehicle left outer join Truck on Vehicle.id = Truck.id left outer join Car on Vehicle.id = Car.id where Vehicle.id in (?) | {1=o.c.s.i.PersistedIdentifier@17}