En succès
A duré 7 ms.
Standard Output
2024-08-30 07:43:34 DEBUG DDLDeployer create table AbstractVehicle(id bigint GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) not null, unique (id))
2024-08-30 07:43:34 DEBUG DDLDeployer create table Vehicle(id bigint not null, unique (id))
2024-08-30 07:43:34 DEBUG DDLDeployer create table Car(model varchar(255), id bigint not null, unique (id))
2024-08-30 07:43:34 DEBUG DDLDeployer alter table Vehicle add constraint FK_Vehicle_id_AbstractVehicle_id foreign key(id) references Abstrac
...[truncated 545 chars]...
:43:34 DEBUG SQLOperation insert into Car(model, id) values (?, ?) | {1={Car.model=Renault, Car.id=1}}
2024-08-30 07:43:34 DEBUG SQLOperation select id, model from Car | {}
2024-08-30 07:43:34 DEBUG SQLOperation select Car.model as Car_model, Car.id as Car_id, AbstractVehicle.id as AbstractVehicle_id, Vehicle.id as Vehicle_id from Car inner join AbstractVehicle as AbstractVehicle on Car.id = AbstractVehicle.id inner join Vehicle as Vehicle on Car.id = Vehicle.id where Car.id in (?) | {Car.id=1}