En succès
A duré 10 ms.
Standard Output
2024-10-27 13:58:45 DEBUG DDLDeployer create table Country_cities(country_id int, cities_id int, unique (country_id, cities_id))
2024-10-27 13:58:45 DEBUG DDLDeployer create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-10-27 13:58:45 DEBUG DDLDeployer create table City(name varchar(255), id int not null, unique (id))
2024-10-27 13:58:45 DEBUG DDLDeployer alter table Country_cities add constraint FK_Country_cities_country_id_Country_id foreign key(
...[truncated 204 chars]...
13:58:45 DEBUG SQLOperation Batching statement 1 times
2024-10-27 13:58:45 TRACE SQLOperation insert into Country(name, description, id) values (?, ?, ?) | {1={Country.id=o.c.s.i.PersistableIdentifier@1, Country.description=null, Country.name=France}}
2024-10-27 13:58:45 TRACE SQLOperation select id from country | {}
2024-10-27 13:58:45 TRACE SQLOperation select count(*) as relationCount from country_cities | {}
2024-10-27 13:58:45 TRACE SQLOperation select count(*) as cityCount from city | {}