En succès
A duré 8 ms.
Standard Output
2025-08-16 06:37:22 DEBUG DDLDeployer create table Element(id bigint not null, unique (id))
2025-08-16 06:37:22 DEBUG DDLDeployer create table Part(name varchar(255), id bigint not null, unique (id))
2025-08-16 06:37:22 DEBUG DDLDeployer create table Question(label varchar(255), id bigint not null, unique (id))
2025-08-16 06:37:22 DEBUG DDLDeployer alter table Part add constraint FK_Part_id_Element_id foreign key(id) references Element(id)
2025-08-16 06:37:22 DEBUG DDLDeployer alter table Questi
...[truncated 623 chars]...
tion.id left outer join Part as Part on Element.id = Part.id where Element.id in (?) | {1=1}
2025-08-16 06:37:22 DEBUG SQLOperation Batching statement 1 times
2025-08-16 06:37:22 TRACE SQLOperation insert into Element(id) values (?) | {1={Element.id=1}}
2025-08-16 06:37:22 DEBUG SQLOperation Batching statement 1 times
2025-08-16 06:37:22 TRACE SQLOperation insert into Question(label, id) values (?, ?) | {1={Question.label=What's the answer to Life, the Universe and Everything ?, Question.id=1}}