En succès
A duré 9 ms.
Standard Output
2024-09-23 19:41:07 DEBUG DDLDeployer create table Car(model varchar(255), id bigint not null, engineModel varchar(255), unique (id))
2024-09-23 19:41:07 DEBUG DDLDeployer create table Engine(model varchar(255) not null, unique (model))
2024-09-23 19:41:07 DEBUG DDLDeployer alter table Car add constraint FK_Car_engineModel_Engine_model foreign key(engineModel) references Engine(model)
2024-09-23 19:41:07 DEBUG SQLOperation Batching statement 1 times
2024-09-23 19:41:07 DEBUG SQLOperation insert
...[truncated 450 chars]...
ine.model as engine_model from Car left outer join Engine as engine on Car.engineModel = engine.model where Car.id in (?) | {Car.id=42}
2024-09-23 19:41:07 DEBUG EntityTreeInflater Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7bbf623a
2024-09-23 19:41:07 DEBUG EntityTreeInflater Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@7e36be3e on object Car{id=42, color=null, model='Renault'}