En succès
A duré 15 ms.
Standard Output
2024-08-29 16:28:17 DEBUG DDLDeployer create table State(name varchar(255), id int not null, countryId int, unique (id))
2024-08-29 16:28:17 DEBUG DDLDeployer create table City(name varchar(255), id int not null, countryId int, unique (id))
2024-08-29 16:28:17 DEBUG DDLDeployer create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-08-29 16:28:17 DEBUG DDLDeployer alter table State add constraint FK_State_countryId_Country_id foreign key(countryId) r
...[truncated 3239 chars]...
BUG SQLOperation select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, City.name as City_name, City.id as City_id, State.id as State_id, State.name as State_name from Country left outer join City as City on Country.id = City.countryId left outer join State as State on Country.id = State.countryId where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-08-29 16:28:17 DEBUG SQLOperation select id from State where id = 1 | {}