En succès
A duré 10 ms.
Standard Output
2025-09-14 16:06:01 DEBUG DDLDeployer create table Car(model varchar(255), id bigint not null, engineModel varchar(255), unique (id))
2025-09-14 16:06:01 DEBUG DDLDeployer create table Engine(model varchar(255) not null, unique (model))
2025-09-14 16:06:01 DEBUG DDLDeployer alter table Car add constraint FK_Car_engineModel_Engine_model foreign key(engineModel) references Engine(model)
2025-09-14 16:06:01 DEBUG SimpleRelationalEntityPersister selecting entities [XFE45K-TRE]
2025-09-14 16:06:01 TR
...[truncated 749 chars]...
engine.model as engine_model from Car left outer join Engine as engine on Car.engineModel = engine.model where Car.id in (?) | {1=42}
2025-09-14 16:06:01 DEBUG EntityTreeInflater Creating instance with o.c.s.e.r.l.JoinRoot$JoinRootRowConsumer entityType=o.c.s.e.FluentEntityMappingConfigurationSupportAlreadyAssignedIdentifierTest$Car
2025-09-14 16:06:01 DEBUG EntityTreeInflater Consuming o.c.s.e.r.l.RelationJoinNode$DefaultRelationJoinRowConsumer on object Car{id=42, color=null, model='Renault'}