Skip to content
En échec

Sortie de la console

Ignore 1 673 Ko. Log complet
2024-10-15 20:32:45	DEBUG	SQLOperation	select Person.name as Person_name, Person.id as Person_id from Person where Person.id in (?) | {Person.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=French president, Person.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.presidentId=o.c.s.i.PersistableIdentifier@0, Country.id=o.c.s.i.PersistableIdentifier@0, Country.description=Smelly cheese !, Country.name=France}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@69a9ad5b
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2fb1ecc2 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Person set name = ? where id = ? | {1={Person.name (U)=French president renamed, Person.id (W)=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@69a9ad5b
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2fb1ecc2 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=new French president, Person.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Country set name = ?, description = ?, presidentId = ? where id = ? | {1={Country.presidentId (U)=o.c.s.i.PersistableIdentifier@1, Country.id (W)=o.c.s.i.PersistedIdentifier@0, Country.description (U)=Smelly cheese !, Country.name (U)=France}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@69a9ad5b
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2fb1ecc2 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	select Person.name as Person_name, Person.id as Person_id from Person where Person.id in (?) | {Person.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@229b155e
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, countryId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Person add constraint FK_Person_countryId_Country_id foreign key(countryId) references Country(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id) values (?, ?, ?) | {1={Country.name=France, Country.description=Smelly cheese !, Country.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id, countryId) values (?, ?, ?) | {1={Person.countryId=o.c.s.i.PersistableIdentifier@0, Person.id=o.c.s.i.PersistableIdentifier@0, Person.name=French president}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.id = president.countryId where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@14d97ea4
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@7f99601 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Person set name = ?, countryId = ? where id = ? | {1={Person.countryId (U)=o.c.s.i.PersistedIdentifier@0, Person.id (W)=o.c.s.i.PersistedIdentifier@0, Person.name (U)=French president renamed}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.id = president.countryId where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@14d97ea4
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@7f99601 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id, countryId) values (?, ?, ?) | {1={Person.countryId=o.c.s.i.PersistedIdentifier@0, Person.id=o.c.s.i.PersistableIdentifier@1, Person.name=new French president}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Person set name = ?, countryId = ? where id = ? | {1={Person.countryId (U)=null, Person.id (W)=o.c.s.i.PersistedIdentifier@0, Person.name (U)=French president renamed}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.id = president.countryId where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@14d97ea4
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@7f99601 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	select Person.name as Person_name, Person.id as Person_id from Person where Person.id in (?) | {Person.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6aa12f32
2024-10-15 20:32:45	DEBUG	SQLOperation	select countryId from Person where id = :personId | {personId=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	SQLOperation	select countryId from Person where id = :personId | {personId=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.id=o.c.s.i.PersistableIdentifier@0, Person.name=French president}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.description=null, Country.presidentId=o.c.s.i.PersistableIdentifier@0, Country.name=France, Country.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country inner join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@49df6998
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@59d03809 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=French president, Person.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.description=Smelly cheese !, Country.id=o.c.s.i.PersistableIdentifier@0, Country.name=France, Country.presidentId=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@18d22a04
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@4598ee83 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Country set name = ?, description = ?, presidentId = ? where id = ? | {1={Country.description (U)=Smelly cheese !, Country.id (W)=o.c.s.i.PersistableIdentifier@0, Country.presidentId (U)=null, Country.name (U)=France}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@18d22a04
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@4598ee83 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	select Person.name as Person_name, Person.id as Person_id from Person where Person.id in (?) | {Person.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@106763ee
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=French president, Person.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.description=Smelly cheese !, Country.id=o.c.s.i.PersistableIdentifier@0, Country.name=France, Country.presidentId=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@58879749
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@517095f9 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=New French president, Person.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Country set name = ?, description = ?, presidentId = ? where id = ? | {1={Country.description (U)=Smelly cheese !, Country.id (W)=o.c.s.i.PersistableIdentifier@0, Country.name (U)=France, Country.presidentId (U)=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Person where id = ? | {1={Person.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@58879749
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@517095f9 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	select Person.name as Person_name, Person.id as Person_id from Person where Person.id in (?) | {Person.id=o.c.s.i.PersistableIdentifier@0}
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.066 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToOneTest$CascadeAll$Update
[INFO] Running org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToOneTest$CascadeAll$Insert
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=French president, Person.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.id=o.c.s.i.PersistableIdentifier@0, Country.name=France, Country.description=Smelly cheese !, Country.presidentId=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Person.name as Person_name, Person.id as Person_id from Person where Person.id in (?) | {Person.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@25bf1fe7
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.id=o.c.s.i.PersistableIdentifier@1, Country.name=France 2, Country.description=null, Country.presidentId=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@205889fe
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2667a07f on object Country[ancientCities=[],capital=<null>,cities=<null>,description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@1,languages=[],modificationDate=<null>,name=France 2,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, countryId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Person add constraint FK_Person_countryId_Country_id foreign key(countryId) references Country(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id) values (?, ?, ?) | {1={Country.name=France, Country.description=Smelly cheese !, Country.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id, countryId) values (?, ?, ?) | {1={Person.countryId=o.c.s.i.PersistableIdentifier@0, Person.id=o.c.s.i.PersistableIdentifier@0, Person.name=French president}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id) values (?, ?, ?) | {1={Country.name=France 2, Country.description=null, Country.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Person.name as Person_name, Person.id as Person_id from Person where Person.id in (?) | {Person.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@113649c0
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Person set name = ?, countryId = ? where id = ? | {1={Person.countryId (U)=o.c.s.i.PersistableIdentifier@1, Person.id (W)=o.c.s.i.PersistedIdentifier@0, Person.name (U)=Me !!}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.id = president.countryId where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@591b1946
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@23094dc3 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@1,languages=[],modificationDate=<null>,name=France 2,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	select count(*) as countryCount from Country | {}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=French president, Person.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.id=o.c.s.i.PersistableIdentifier@0, Country.name=France, Country.description=Smelly cheese !, Country.presidentId=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Person.name as Person_name, Person.id as Person_id from Person where Person.id in (?) | {Person.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4e999d9e
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Person set name = ? where id = ? | {1={Person.name (U)=Me !!, Person.id (W)=o.c.s.i.PersistedIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.id=o.c.s.i.PersistableIdentifier@1, Country.name=France 2, Country.description=null, Country.presidentId=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4da2024c
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@77c39d6a on object Country[ancientCities=[],capital=<null>,cities=<null>,description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@1,languages=[],modificationDate=<null>,name=France 2,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	select count(*) as countryCount from Country | {}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=French president, Person.id=o.c.s.i.PersistableIdentifier@0}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.name=France, Country.presidentId=o.c.s.i.PersistableIdentifier@0, Country.id=o.c.s.i.PersistableIdentifier@0, Country.description=Smelly cheese !}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistableIdentifier@0}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@b81fc30
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6818d9b7 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@0,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.08 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToOneTest$CascadeAll$Insert
[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.218 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToOneTest$CascadeAll
[INFO] Running org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToOneTest$ForeignKeyCreation
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table city(state int, name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table city add constraint FK_city_state_Country_id foreign key(state) references Country(id)
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table City(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, capitalId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_capitalId_City_id foreign key(capitalId) references City(id)
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table city(state int, name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table city add constraint FK_city_state_Country_id foreign key(state) references Country(id)
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table city(state int, name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table city add constraint FK_city_state_Country_id foreign key(state) references Country(id)
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table City(name varchar(255), id int not null, countryId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table City add constraint FK_City_countryId_Country_id foreign key(countryId) references Country(id)
[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.038 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToOneTest$ForeignKeyCreation
[INFO] Running org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToOneTest$CascadeDeclaration
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.id=o.c.s.i.PersistableIdentifier@666, Person.name=null}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.description=null, Country.presidentId=o.c.s.i.PersistableIdentifier@666, Country.id=o.c.s.i.PersistableIdentifier@42, Country.name=null}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistedIdentifier@42}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@32cf903e
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@1c320505 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@42,languages=[],modificationDate=<null>,name=<null>,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Country where id = ? | {1={Country.id=o.c.s.i.PersistedIdentifier@42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistedIdentifier@42}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Person.name as Person_name, Person.id as Person_id from Person where Person.id in (?) | {Person.id=o.c.s.i.PersistedIdentifier@666}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@3b568c84
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, countryId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Person add constraint FK_Person_countryId_Country_id foreign key(countryId) references Country(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=French president, Person.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id) values (?, ?, ?) | {1={Country.id=o.c.s.i.PersistableIdentifier@42, Country.description=Smelly cheese !, Country.name=France}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Person set countryId = ? where id = ? | {1={}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.id = president.countryId where Country.id in (?) | {Country.id=o.c.s.i.PersistedIdentifier@42}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6099c9b2
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@57033d9e on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@42,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Country set name = ? where id = ? | {1={Country.id (W)=o.c.s.i.PersistableIdentifier@42, Country.name (U)=touched France}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 2 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Person set countryId = ? where id = ? | {1={}, 2={}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Person where id = 1 | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Person(name, id) values (?, ?) | {1={Person.name=New French president, Person.id=o.c.s.i.PersistableIdentifier@2}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Country set name = ?, description = ? where id = ? | {1={Country.id (W)=o.c.s.i.PersistedIdentifier@42, Country.description (U)=Smelly cheese !, Country.name (U)=France}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 2 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Person set countryId = ? where id = ? | {1={}, 2={}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.id = president.countryId where Country.id in (?) | {Country.id=o.c.s.i.PersistedIdentifier@42}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6099c9b2
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@57033d9e on object Country[ancientCities=[],capital=<null>,cities=<null>,description=Smelly cheese !,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@42,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Person set countryId = ? where id = ? | {1={}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Country where id = ? | {1={Country.id=o.c.s.i.PersistableIdentifier@42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Country | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Person | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Person where id = 2 | {}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistedIdentifier@100}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@1c6ba49e
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@438dcd81 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@100,languages=[],modificationDate=<null>,name=<null>,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Country where id = ? | {1={Country.id=o.c.s.i.PersistedIdentifier@100}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Person where id = ? | {1={Person.id=o.c.s.i.PersistedIdentifier@42}}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.name=France, Country.id=o.c.s.i.PersistableIdentifier@42, Country.description=Smelly cheese !, Country.presidentId=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistedIdentifier@42}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@387ee53c
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@41bfa8c on object Country[ancientCities=[],capital=<null>,cities=<null>,description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@42,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Country set description = ?, name = ? where id = ? | {1={Country.name (U)=touched France, Country.id (W)=o.c.s.i.PersistableIdentifier@42, Country.description (U)=null}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Person where id = 1 | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Country where id = ? | {1={Country.id=o.c.s.i.PersistedIdentifier@42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Country | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Person where id = 1 | {}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Person(name varchar(255), id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Country(name varchar(255), description varchar(255), id int not null, presidentId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Country add constraint FK_Country_presidentId_Person_id foreign key(presidentId) references Person(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Country(name, description, id, presidentId) values (?, ?, ?, ?) | {1={Country.description=Smelly cheese !, Country.presidentId=o.c.s.i.PersistableIdentifier@1, Country.name=France, Country.id=o.c.s.i.PersistableIdentifier@42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Country.name as Country_name, Country.description as Country_description, Country.id as Country_id, president.name as president_name, president.id as president_id from Country left outer join Person as president on Country.presidentId = president.id where Country.id in (?) | {Country.id=o.c.s.i.PersistedIdentifier@42}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7249fee8
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@22a47156 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@42,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Country set description = ?, name = ? where id = ? | {1={Country.description (U)=null, Country.name (U)=touched France, Country.id (W)=o.c.s.i.PersistableIdentifier@42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Person where id = 1 | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Country where id = ? | {1={Country.id=o.c.s.i.PersistedIdentifier@42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Country | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select name from Person where id = 1 | {}
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.051 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToOneTest$CascadeDeclaration
[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.347 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToOneTest
[INFO] Running org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportAlreadyAssignedIdentifierTest
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Engine(model varchar(255) not null, unique (model))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Car(model varchar(255), id bigint not null, engineModel varchar(255), unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Car add constraint FK_Car_engineModel_Engine_model foreign key(engineModel) references Engine(model)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Engine(model) values (?) | {1={Engine.model=XFE45K-TRE}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Car(model, id, engineModel) values (?, ?, ?) | {1={Car.id=42, Car.model=Renault, Car.engineModel=XFE45K-TRE}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select id, model from Car | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Car.model as Car_model, Car.id as Car_id, engine.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-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@9835108
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6717483 on object Car{id=42, color=null, model='Renault'}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Car(model varchar(255), id bigint not null, unique (id))
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Car(model, id) values (?, ?) | {1={Car.id=42, Car.model=Renault}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select id, model from Car | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Car.model as Car_model, Car.id as Car_id from Car where Car.id in (?) | {Car.id=42}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@a8128f
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table AbstractVehicle(id bigint not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Vehicle(id bigint not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Car(model varchar(255), id bigint not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Vehicle add constraint FK_Vehicle_id_AbstractVehicle_id foreign key(id) references AbstractVehicle(id)
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Car add constraint FK_Car_id_Vehicle_id foreign key(id) references Vehicle(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into AbstractVehicle(id) values (?) | {1={AbstractVehicle.id=42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Vehicle(id) values (?) | {1={Vehicle.id=42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Car(model, id) values (?, ?) | {1={Car.model=Renault, Car.id=42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select id, model from Car | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Car.model as Car_model, Car.id as Car_id, AbstractVehicle.id as AbstractVehicle_id, Vehicle.id as Vehicle_id from Car inner join AbstractVehicle as AbstractVehicle on Car.id = AbstractVehicle.id inner join Vehicle as Vehicle on Car.id = Vehicle.id where Car.id in (?) | {Car.id=42}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@2c589d04
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.MergeJoinNode$MergeJoinRowConsumer@1c4de15b on object Car{id=42, color=null, model='Renault'}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.MergeJoinNode$MergeJoinRowConsumer@7495ff6b on object Car{id=42, color=null, model='Renault'}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Car(model varchar(255), id bigint not null, unique (id))
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Car(model, id) values (?, ?) | {1={Car.id=42, Car.model=Renault}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select id, model from Car | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Car.model as Car_model, Car.id as Car_id from Car where Car.id in (?) | {Car.id=42}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4056dfd5
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Car(model varchar(255), id bigint not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Engine(model varchar(255) not null, carId bigint, unique (model))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Engine add constraint FK_Engine_carId_Car_id foreign key(carId) references Car(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Car(model, id) values (?, ?) | {1={Car.model=Renault, Car.id=42}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Engine(model, carId) values (?, ?) | {1={Engine.carId=42, Engine.model=XFE45K-TRE}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select id, model from Car | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Car.model as Car_model, Car.id as Car_id, engine.model as engine_model from Car left outer join Engine as engine on Car.id = engine.carId where Car.id in (?) | {Car.id=42}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@23b5b8b5
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@553f50d4 on object Car{id=42, color=null, model='Renault'}
[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.041 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportAlreadyAssignedIdentifierTest
[INFO] Running org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportPostInsertIdentifierTest
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Engine(model varchar(255), id bigint GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Car(model varchar(255), id bigint GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) not null, engineId bigint, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Car add constraint FK_Car_engineId_Engine_id foreign key(engineId) references Engine(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Engine(model, id) values (?, default) | {1={Engine.model=XFE45K-TRE}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Car(model, id, engineId) values (?, default, ?) | {1={Car.model=Renault, Car.engineId=1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select id, model from Car | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Car.model as Car_model, Car.id as Car_id, engine.model as engine_model, engine.id as engine_id from Car left outer join Engine as engine on Car.engineId = engine.id where Car.id in (?) | {Car.id=1}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@600075a4
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@1847ac on object Car{id=1, color=null, model='Renault'}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Car(model varchar(255), id bigint GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) not null, unique (id))
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Car(model, id) values (?, default) | {1={Car.model=Renault}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select id, model from Car | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Car.model as Car_model, Car.id as Car_id from Car where Car.id in (?) | {Car.id=1}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@552bab01
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table AbstractVehicle(id bigint GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Vehicle(id bigint not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Car(model varchar(255), id bigint not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Vehicle add constraint FK_Vehicle_id_AbstractVehicle_id foreign key(id) references AbstractVehicle(id)
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Car add constraint FK_Car_id_Vehicle_id foreign key(id) references Vehicle(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into AbstractVehicle(id) values (default) | {1={}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Vehicle(id) values (?) | {1={Vehicle.id=1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Car(model, id) values (?, ?) | {1={Car.model=Renault, Car.id=1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select id, model from Car | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Car.model as Car_model, Car.id as Car_id, AbstractVehicle.id as AbstractVehicle_id, Vehicle.id as Vehicle_id from Car inner join AbstractVehicle as AbstractVehicle on Car.id = AbstractVehicle.id inner join Vehicle as Vehicle on Car.id = Vehicle.id where Car.id in (?) | {Car.id=1}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@1eb0b2b0
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.MergeJoinNode$MergeJoinRowConsumer@4a2fd0c4 on object Car{id=1, color=null, model='Renault'}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.MergeJoinNode$MergeJoinRowConsumer@5111ce03 on object Car{id=1, color=null, model='Renault'}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Car(model varchar(255), id bigint GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) not null, unique (id))
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Car(model, id) values (?, default) | {1={Car.model=Renault}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select id, model from Car | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Car.model as Car_model, Car.id as Car_id from Car where Car.id in (?) | {Car.id=1}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6faeb786
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportPostInsertIdentifierTest
[INFO] Running org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Choice(label varchar(255), id int not null, questionId int, myIdx integer, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Choice(label, id, questionId, myIdx) values (?, ?, ?, ?) | {1={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@20, Choice.myIdx=2, Choice.label=null}, 2={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@30, Choice.myIdx=3, Choice.label=null}, 3={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@10, Choice.myIdx=1, Choice.label=null}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Choice.id, Choice.myIdx from Choice order by Choice.id | {}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=2, Choice.id=o.c.s.i.PersistableIdentifier@20}, 2={Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=3, Choice.id=o.c.s.i.PersistableIdentifier@30}, 3={Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=1, Choice.id=o.c.s.i.PersistableIdentifier@10}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.idx=1, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@10}, 2={Choice.idx=3, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@30}, 3={Choice.idx=2, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@20}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Question.id as Question_id, Choice.label as Choice_label, Choice.id as Choice_id, Choice.idx as Choice_idx from Question left outer join Choice as Choice on Question.id = Choice.questionId where Question.id in (?) | {Question.id=o.c.s.i.PersistedIdentifier@1}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4d2e9ebd
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6927f4b1 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@49da3c9
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4d2e9ebd
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6927f4b1 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@49da3c9
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4d2e9ebd
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6927f4b1 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@49da3c9
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 2 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.id=o.c.s.i.PersistableIdentifier@13, Choice.label=Grenoble, Choice.idx=1, Choice.questionId=o.c.s.i.PersistableIdentifier@1}, 2={Choice.id=o.c.s.i.PersistableIdentifier@17, Choice.label=Lyon, Choice.idx=2, Choice.questionId=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select questionId from Choice | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Question.id as Question_id, Choice.label as Choice_label, Choice.id as Choice_id, Choice.idx as Choice_idx from Question left outer join Choice as Choice on Question.id = Choice.questionId where Question.id in (?) | {Question.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@cbb650e
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@39ab14bb on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@cd9069
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@cbb650e
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@39ab14bb on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@cd9069
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Choice set label = ?, questionId = ?, idx = ? where id = ? | {1={Choice.id (W)=o.c.s.i.PersistableIdentifier@17, Choice.label (U)=Lyon, Choice.idx (U)=null, Choice.questionId (U)=null}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select questionId from Choice | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	update Choice set label = ?, questionId = ?, idx = ? where id = ? | {1={Choice.id (W)=o.c.s.i.PersistableIdentifier@13, Choice.label (U)=Grenoble, Choice.idx (U)=null, Choice.questionId (U)=null}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Question where id = ? | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select questionId from Choice | {}
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Answer(id int not null, unique (id))
2024-10-15 20:32:45	DEBUG	DDLDeployer	create table Answer_choices(answer_id int, choices_id int, idx integer not null, unique (answer_id, choices_id, idx))
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_choices_id_Choice_id foreign key(choices_id) references Choice(id)
2024-10-15 20:32:45	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_answer_id_Answer_id foreign key(answer_id) references Answer(id)
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.id=o.c.s.i.PersistableIdentifier@30, Choice.label=null, Choice.idx=3, Choice.questionId=o.c.s.i.PersistableIdentifier@1}, 2={Choice.id=o.c.s.i.PersistableIdentifier@20, Choice.label=null, Choice.idx=2, Choice.questionId=o.c.s.i.PersistableIdentifier@1}, 3={Choice.id=o.c.s.i.PersistableIdentifier@10, Choice.label=null, Choice.idx=1, Choice.questionId=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Answer(id) values (?) | {1={Answer.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?, ?, ?) | {Choice.id=[o.c.s.i.PersistableIdentifier@20, o.c.s.i.PersistableIdentifier@10, o.c.s.i.PersistableIdentifier@30]}
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4f8710be
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4f8710be
2024-10-15 20:32:45	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4f8710be
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:45	DEBUG	SQLOperation	insert into Answer_choices(idx, answer_id, choices_id) values (?, ?, ?) | {1={Answer_choices.idx=1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 2={Answer_choices.idx=2, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 3={Answer_choices.idx=3, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Answer_choices where choices_id = ? and answer_id = ? and idx = ? | {1={Answer_choices.idx=1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 2={Answer_choices.idx=2, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 3={Answer_choices.idx=3, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:45	DEBUG	SQLOperation	delete from Answer where id = ? | {1={Answer.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:45	DEBUG	SQLOperation	select count(id) as answerId from Answer | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select count(*) as relationCount from Answer_Choices | {}
2024-10-15 20:32:45	DEBUG	SQLOperation	select count(id) as choiceCount from Choice | {}
[INFO] Running org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$WithDuplicates
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer_choices(answer_id int, choices_id int, idx integer not null, unique (answer_id, choices_id, idx))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_answer_id_Answer_id foreign key(answer_id) references Answer(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_choices_id_Choice_id foreign key(choices_id) references Choice(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@20, Choice.idx=2}, 2={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@10, Choice.idx=1}, 3={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@30, Choice.idx=3}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer(id) values (?) | {1={Answer.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?, ?, ?) | {Choice.id=[o.c.s.i.PersistableIdentifier@20, o.c.s.i.PersistableIdentifier@10, o.c.s.i.PersistableIdentifier@30]}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@72d6c99
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@72d6c99
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@72d6c99
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 4 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer_choices(idx, answer_id, choices_id) values (?, ?, ?) | {1={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=3, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 2={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=1, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 3={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=2, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 4={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.idx=4, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Answer.id as Answer_id, Answer_choices.idx as Answer_choices_idx, Answer_choices_Choice.label as Answer_choices_Choice_label, Answer_choices_Choice.id as Answer_choices_Choice_id from Answer left outer join Answer_choices as Answer_choices on Answer.id = Answer_choices.answer_id left outer join Choice as Answer_choices_Choice on Answer_choices.choices_id = Answer_choices_Choice.id where Answer.id in (?) | {Answer.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@2427fc4b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@2e363626 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@5fd855c2
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2ff415a8 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@5fd855c2
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@2427fc4b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@2e363626 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@5fd855c2
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2ff415a8 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@5fd855c2
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@2427fc4b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@2e363626 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@5fd855c2
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2ff415a8 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@5fd855c2
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@2427fc4b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@2e363626 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@5fd855c2
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2ff415a8 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@5fd855c2
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 4 times
2024-10-15 20:32:46	DEBUG	SQLOperation	delete from Answer_choices where idx = ? and choices_id = ? and answer_id = ? | {1={Answer_choices.choices_id=o.c.s.i.PersistedIdentifier@10, Answer_choices.idx=1, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 2={Answer_choices.choices_id=o.c.s.i.PersistedIdentifier@20, Answer_choices.idx=2, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 3={Answer_choices.choices_id=o.c.s.i.PersistedIdentifier@20, Answer_choices.idx=3, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 4={Answer_choices.choices_id=o.c.s.i.PersistedIdentifier@30, Answer_choices.idx=4, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?, ?, ?) | {Choice.id=[o.c.s.i.PersistableIdentifier@20, o.c.s.i.PersistableIdentifier@10, o.c.s.i.PersistableIdentifier@30]}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@72d6c99
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@72d6c99
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@72d6c99
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer_choices(idx, answer_id, choices_id) values (?, ?, ?) | {1={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=1, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 2={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=2, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 3={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.idx=3, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Answer.id as Answer_id, Answer_choices.idx as Answer_choices_idx, Answer_choices_Choice.label as Answer_choices_Choice_label, Answer_choices_Choice.id as Answer_choices_Choice_id from Answer left outer join Answer_choices as Answer_choices on Answer.id = Answer_choices.answer_id left outer join Choice as Answer_choices_Choice on Answer_choices.choices_id = Answer_choices_Choice.id where Answer.id in (?) | {Answer.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@2427fc4b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@2e363626 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@2850a59e
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2ff415a8 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@2850a59e
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@2427fc4b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@2e363626 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@2850a59e
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2ff415a8 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@2850a59e
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@2427fc4b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@2e363626 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@2850a59e
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2ff415a8 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@2850a59e
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	delete from Answer_choices where idx = ? and choices_id = ? and answer_id = ? | {1={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=1, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 2={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=2, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 3={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.idx=3, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	delete from Answer where id = ? | {1={Answer.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select count(*) as c from Answer_Choices | {}
2024-10-15 20:32:46	DEBUG	SQLOperation	select id from Choice | {}
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer_choices(answer_id int, choices_id int, idx integer not null, unique (answer_id, choices_id, idx))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_choices_id_Choice_id foreign key(choices_id) references Choice(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_answer_id_Answer_id foreign key(answer_id) references Answer(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@10, Choice.idx=1}, 2={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@20, Choice.idx=2}, 3={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@30, Choice.idx=3}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer(id) values (?) | {1={Answer.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?, ?, ?) | {Choice.id=[o.c.s.i.PersistableIdentifier@20, o.c.s.i.PersistableIdentifier@10, o.c.s.i.PersistableIdentifier@30]}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@5436f78b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@5436f78b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@5436f78b
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 4 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer_choices(idx, answer_id, choices_id) values (?, ?, ?) | {1={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=3, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 2={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=1, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 3={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.idx=4, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 4={Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=2, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Answer_Choices.answer_Id, Answer_Choices.idx, Answer_Choices.choices_Id from Answer_Choices order by Answer_Choices.idx | {}
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer_choices(answer_id int, choices_id int, idx integer not null, unique (answer_id, choices_id, idx))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_answer_id_Answer_id foreign key(answer_id) references Answer(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_choices_id_Choice_id foreign key(choices_id) references Choice(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 4 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@40, Choice.idx=4, Choice.questionId=o.c.s.i.PersistableIdentifier@1}, 2={Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@20, Choice.idx=2, Choice.questionId=o.c.s.i.PersistableIdentifier@1}, 3={Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@30, Choice.idx=3, Choice.questionId=o.c.s.i.PersistableIdentifier@1}, 4={Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@10, Choice.idx=1, Choice.questionId=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer(id) values (?) | {1={Answer.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?, ?, ?) | {Choice.id=[o.c.s.i.PersistableIdentifier@20, o.c.s.i.PersistableIdentifier@10, o.c.s.i.PersistableIdentifier@30]}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 4 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer_choices(idx, answer_id, choices_id) values (?, ?, ?) | {1={Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=2}, 2={Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.idx=4}, 3={Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=3}, 4={Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Question.id as Question_id, Choice.label as Choice_label, Choice.id as Choice_id, Choice.idx as Choice_idx from Question left outer join Choice as Choice on Question.id = Choice.questionId where Question.id in (?) | {Question.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@73118c28
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@37653a25 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@5b8d5c44
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@73118c28
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@37653a25 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@5b8d5c44
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@73118c28
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@37653a25 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@5b8d5c44
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@73118c28
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@37653a25 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@5b8d5c44
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 4 times
2024-10-15 20:32:46	DEBUG	SQLOperation	update Choice set label = ?, questionId = ?, idx = ? where id = ? | {1={Choice.label (U)=null, Choice.id (W)=o.c.s.i.PersistedIdentifier@20, Choice.idx (U)=2, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1}, 2={Choice.label (U)=null, Choice.id (W)=o.c.s.i.PersistedIdentifier@40, Choice.idx (U)=4, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1}, 3={Choice.label (U)=null, Choice.id (W)=o.c.s.i.PersistedIdentifier@10, Choice.idx (U)=1, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1}, 4={Choice.label (U)=null, Choice.id (W)=o.c.s.i.PersistedIdentifier@30, Choice.idx (U)=3, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@50, Choice.idx=5, Choice.questionId=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Answer.id as Answer_id, Answer_choices.idx as Answer_choices_idx, Answer_choices_Choice.label as Answer_choices_Choice_label, Answer_choices_Choice.id as Answer_choices_Choice_id from Answer left outer join Answer_choices as Answer_choices on Answer.id = Answer_choices.answer_id left outer join Choice as Answer_choices_Choice on Answer_choices.choices_id = Answer_choices_Choice.id where Answer.id in (?) | {Answer.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@6b373cd8
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@6b373cd8
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@6b373cd8
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@6b373cd8
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@6b373cd8
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@6b373cd8
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@6b373cd8
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@6b373cd8
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 4 times
2024-10-15 20:32:46	DEBUG	SQLOperation	delete from Answer_choices where choices_id = ? and answer_id = ? and idx = ? | {1={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=1}, 2={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.idx=4}, 3={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=2}, 4={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=3}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?, ?, ?, ?, ?) | {Choice.id=[o.c.s.i.PersistableIdentifier@50, o.c.s.i.PersistableIdentifier@20, o.c.s.i.PersistableIdentifier@40, o.c.s.i.PersistableIdentifier@10, o.c.s.i.PersistableIdentifier@30]}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 7 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer_choices(idx, answer_id, choices_id) values (?, ?, ?) | {1={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=1}, 2={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=2}, 3={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@50, Answer_choices.idx=3}, 4={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=4}, 5={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.idx=5}, 6={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=6}, 7={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@40, Answer_choices.idx=7}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Answer_Choices.answer_Id, Answer_Choices.idx, Answer_Choices.choices_Id from Answer_Choices order by Answer_Choices.idx | {}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Answer.id as Answer_id, Answer_choices.idx as Answer_choices_idx, Answer_choices_Choice.label as Answer_choices_Choice_label, Answer_choices_Choice.id as Answer_choices_Choice_id from Answer left outer join Answer_choices as Answer_choices on Answer.id = Answer_choices.answer_id left outer join Choice as Answer_choices_Choice on Answer_choices.choices_id = Answer_choices_Choice.id where Answer.id in (?) | {Answer.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@6ad0a737
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@4813b837 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@2e6bf28a on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@69d01fef
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 7 times
2024-10-15 20:32:46	DEBUG	SQLOperation	delete from Answer_choices where choices_id = ? and answer_id = ? and idx = ? | {1={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=2}, 2={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@50, Answer_choices.idx=3}, 3={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=1}, 4={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@40, Answer_choices.idx=7}, 5={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=4}, 6={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=6}, 7={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.idx=5}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?, ?) | {Choice.id=[o.c.s.i.PersistableIdentifier@20, o.c.s.i.PersistableIdentifier@10]}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@7771c14d
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer_choices(idx, answer_id, choices_id) values (?, ?, ?) | {1={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=1}, 2={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.idx=2}, 3={Answer_choices.answer_id=o.c.s.i.PersistedIdentifier@1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.idx=3}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Answer_Choices.answer_Id, Answer_Choices.idx, Answer_Choices.choices_Id from Answer_Choices order by Answer_Choices.idx | {}
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer_choices(answer_id int, choices_id int, idx integer not null, unique (answer_id, choices_id, idx))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_answer_id_Answer_id foreign key(answer_id) references Answer(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_choices_id_Choice_id foreign key(choices_id) references Choice(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.label=null, Choice.idx=2, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@20}, 2={Choice.label=toto, Choice.idx=1, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@10}, 3={Choice.label=null, Choice.idx=3, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@30}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer(id) values (?) | {1={Answer.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?, ?, ?) | {Choice.id=[o.c.s.i.PersistableIdentifier@20, o.c.s.i.PersistableIdentifier@10, o.c.s.i.PersistableIdentifier@30]}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@3c1ddc7b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@3c1ddc7b
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@3c1ddc7b
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 4 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer_choices(idx, answer_id, choices_id) values (?, ?, ?) | {1={Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1, Answer_choices.idx=4, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20}, 2={Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1, Answer_choices.idx=2, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30}, 3={Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1, Answer_choices.idx=3, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10}, 4={Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1, Answer_choices.idx=1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Answer.id as Answer_id, Answer_choices.idx as Answer_choices_idx, Answer_choices_Choice.label as Answer_choices_Choice_label, Answer_choices_Choice.id as Answer_choices_Choice_id from Answer left outer join Answer_choices as Answer_choices on Answer.id = Answer_choices.answer_id left outer join Choice as Answer_choices_Choice on Answer_choices.choices_id = Answer_choices_Choice.id where Answer.id in (?) | {Answer.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@26350900
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@3d2c4850 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@1cdbc352
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@7883afe2 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@1cdbc352
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@26350900
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@3d2c4850 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@1cdbc352
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@7883afe2 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@1cdbc352
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@26350900
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@3d2c4850 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@1cdbc352
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@7883afe2 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@1cdbc352
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@26350900
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@3d2c4850 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@1cdbc352
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@7883afe2 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Answer@1cdbc352
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer_choices(answer_id int, choices_id int, idx integer not null, unique (answer_id, choices_id, idx))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_choices_id_Choice_id foreign key(choices_id) references Choice(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_answer_id_Answer_id foreign key(answer_id) references Answer(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@30, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=3}, 2={Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@10, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=1}, 3={Choice.label=null, Choice.id=o.c.s.i.PersistableIdentifier@20, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=2}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?) | {Choice.id=o.c.s.i.PersistableIdentifier@10}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@3dc3d823
2024-10-15 20:32:46	DEBUG	SQLOperation	select Question.id as Question_id, Choice.label as Choice_label, Choice.id as Choice_id, Choice.idx as Choice_idx from Question left outer join Choice as Choice on Question.id = Choice.questionId where Question.id in (?) | {Question.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@1d6c9c06
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@55735eaa on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@b324706
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@1d6c9c06
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@55735eaa on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@b324706
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@1d6c9c06
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@55735eaa on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@b324706
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Answer_choices(answer_id int, choices_id int, idx integer not null, unique (answer_id, choices_id, idx))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_answer_id_Answer_id foreign key(answer_id) references Answer(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Answer_choices add constraint FK_Answer_choices_choices_id_Choice_id foreign key(choices_id) references Choice(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=1, Choice.id=o.c.s.i.PersistableIdentifier@10}, 2={Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=2, Choice.id=o.c.s.i.PersistableIdentifier@20}, 3={Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=3, Choice.id=o.c.s.i.PersistableIdentifier@30}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer(id) values (?) | {1={Answer.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.label as Choice_label, Choice.id as Choice_id from Choice where Choice.id in (?, ?, ?) | {Choice.id=[o.c.s.i.PersistableIdentifier@20, o.c.s.i.PersistableIdentifier@10, o.c.s.i.PersistableIdentifier@30]}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@20c833d1
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@20c833d1
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@20c833d1
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 4 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Answer_choices(idx, answer_id, choices_id) values (?, ?, ?) | {1={Answer_choices.idx=2, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 2={Answer_choices.idx=3, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@20, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 3={Answer_choices.idx=4, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@30, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}, 4={Answer_choices.idx=1, Answer_choices.choices_id=o.c.s.i.PersistableIdentifier@10, Answer_choices.answer_id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	delete from Answer_choices where answer_id in (?) | {1=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:46	DEBUG	SQLOperation	delete from Answer where id in (?) | {Answer.id=o.c.s.i.PersistableIdentifier@1}
2024-10-15 20:32:46	DEBUG	SQLOperation	select count(*) as c from Answer_Choices | {}
2024-10-15 20:32:46	DEBUG	SQLOperation	select id from Choice | {}
[INFO] Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.072 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$WithDuplicates
[INFO] Running org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Update
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(label varchar(255), id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question_choices(question_id int, choices_id int, unique (question_id, choices_id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(label varchar(255), id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Question_choices add constraint FK_Question_choices_choices_id_Choice_id foreign key(choices_id) references Choice(id)
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Question_choices add constraint FK_Question_choices_question_id_Question_id foreign key(question_id) references Question(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(label, id) values (?, ?) | {1={Question.id=o.c.s.i.PersistableIdentifier@42, Question.label=null}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 2 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question_choices(question_id, choices_id) values (?, ?) | {1={Question_choices.choices_id=o.c.s.i.PersistableIdentifier@200, Question_choices.question_id=o.c.s.i.PersistableIdentifier@42}, 2={Question_choices.choices_id=o.c.s.i.PersistableIdentifier@100, Question_choices.question_id=o.c.s.i.PersistableIdentifier@42}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Question.label as Question_label, Question.id as Question_id, Question_choices_Choice.label as Question_choices_Choice_label, Question_choices_Choice.id as Question_choices_Choice_id from Question left outer join Question_choices as Question_choices on Question.id = Question_choices.question_id left outer join Choice as Question_choices_Choice on Question_choices.choices_id = Question_choices_Choice.id where Question.id in (?) | {Question.id=o.c.s.i.PersistableIdentifier@42}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@142f55b5
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@76cd9333 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@57f4c2ec
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6b019c31 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@57f4c2ec
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@142f55b5
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@76cd9333 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@57f4c2ec
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6b019c31 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@57f4c2ec
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	update Question set label = ? where id = ? | {1={Question.id (W)=o.c.s.i.PersistedIdentifier@42, Question.label (U)=What's your name ?}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Question.label as Question_label, Question.id as Question_id, Question_choices_Choice.label as Question_choices_Choice_label, Question_choices_Choice.id as Question_choices_Choice_id from Question left outer join Question_choices as Question_choices on Question.id = Question_choices.question_id left outer join Choice as Question_choices_Choice on Question_choices.choices_id = Question_choices_Choice.id where Question.id in (?) | {Question.id=o.c.s.i.PersistableIdentifier@42}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@142f55b5
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@76cd9333 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@2a2e4fad
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6b019c31 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@2a2e4fad
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@142f55b5
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.PassiveJoinNode$PassiveJoinRowConsumer@76cd9333 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@2a2e4fad
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6b019c31 on object org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Question@2a2e4fad
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.idx=2, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@20}, 2={Choice.idx=3, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@30}, 3={Choice.idx=1, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@10}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 2 times
2024-10-15 20:32:46	DEBUG	SQLOperation	update Choice set label = ?, questionId = ?, idx = ? where id = ? | {1={Choice.idx (U)=2, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.label (U)=null, Choice.id (W)=o.c.s.i.PersistableIdentifier@10}, 2={Choice.idx (U)=1, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.label (U)=null, Choice.id (W)=o.c.s.i.PersistableIdentifier@30}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	delete from Choice where id = ? | {1={Choice.id=o.c.s.i.PersistableIdentifier@20}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@30, Choice.label=null, Choice.idx=3}, 2={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@20, Choice.label=null, Choice.idx=2}, 3={Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@10, Choice.label=null, Choice.idx=1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	update Choice set label = ?, questionId = ?, idx = ? where id = ? | {1={Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.id (W)=o.c.s.i.PersistableIdentifier@20, Choice.idx (U)=1, Choice.label (U)=null}, 2={Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.id (W)=o.c.s.i.PersistableIdentifier@10, Choice.idx (U)=2, Choice.label (U)=null}, 3={Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.id (W)=o.c.s.i.PersistableIdentifier@30, Choice.idx (U)=3, Choice.label (U)=null}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.idx=3, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@30}, 2={Choice.idx=2, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@20}, 3={Choice.idx=1, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.id=o.c.s.i.PersistableIdentifier@10}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 2 times
2024-10-15 20:32:46	DEBUG	SQLOperation	update Choice set label = ?, questionId = ?, idx = ? where id = ? | {1={Choice.idx (U)=2, Choice.label (U)=null, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.id (W)=o.c.s.i.PersistableIdentifier@10}, 2={Choice.idx (U)=1, Choice.label (U)=null, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.id (W)=o.c.s.i.PersistableIdentifier@30}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	delete from Choice where id = ? | {1={Choice.id=o.c.s.i.PersistableIdentifier@20}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.id=o.c.s.i.PersistableIdentifier@10, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=1}, 2={Choice.id=o.c.s.i.PersistableIdentifier@20, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=2}, 3={Choice.id=o.c.s.i.PersistableIdentifier@30, Choice.label=null, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.idx=3}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Choice(id int not null, idx integer not null, label varchar(255), questionId int, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Question(id int not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table Choice add constraint FK_Choice_questionId_Question_id foreign key(questionId) references Question(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Question(id) values (?) | {1={Question.id=o.c.s.i.PersistableIdentifier@1}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.idx=1, Choice.id=o.c.s.i.PersistableIdentifier@10, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null}, 2={Choice.idx=2, Choice.id=o.c.s.i.PersistableIdentifier@20, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null}, 3={Choice.idx=3, Choice.id=o.c.s.i.PersistableIdentifier@30, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 3 times
2024-10-15 20:32:46	DEBUG	SQLOperation	update Choice set label = ?, questionId = ?, idx = ? where id = ? | {1={Choice.idx (U)=3, Choice.id (W)=o.c.s.i.PersistableIdentifier@20, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.label (U)=null}, 2={Choice.idx (U)=4, Choice.id (W)=o.c.s.i.PersistableIdentifier@10, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.label (U)=null}, 3={Choice.idx (U)=1, Choice.id (W)=o.c.s.i.PersistableIdentifier@30, Choice.questionId (U)=o.c.s.i.PersistableIdentifier@1, Choice.label (U)=null}}
2024-10-15 20:32:46	DEBUG	SQLOperation	Batching statement 1 times
2024-10-15 20:32:46	DEBUG	SQLOperation	insert into Choice(label, id, questionId, idx) values (?, ?, ?, ?) | {1={Choice.idx=2, Choice.id=o.c.s.i.PersistableIdentifier@40, Choice.questionId=o.c.s.i.PersistableIdentifier@1, Choice.label=null}}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Choice.id, Choice.idx from Choice order by Choice.id | {}
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.058 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest$Update
[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.18 s - in org.codefilarete.stalactite.engine.FluentEntityMappingConfigurationSupportOneToManyListTest
[INFO] Running org.codefilarete.stalactite.query.EntityCriteriaSupportTest
[INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 s - in org.codefilarete.stalactite.query.EntityCriteriaSupportTest
[INFO] Running org.codefilarete.stalactite.query.EntityGraphSelectExecutorTest
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table City(name varchar(255), id bigint not null, countryId bigint, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Country(name varchar(255), id bigint not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table City add constraint FK_City_countryId_Country_id foreign key(countryId) references Country(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	select Country.id as rootId from Country left outer join City as City on Country.id = City.countryId where Country.name = ? and City.name = ? | {1=France, 2=Grenoble}
2024-10-15 20:32:46	DEBUG	SQLOperation	select Country.name as Country_name, Country.id as Country_id, City.name as City_name, City.id as City_id from Country left outer join City as City on Country.id = City.countryId where Country.id in (?) | {1=o.c.s.i.PersistedIdentifier@12}
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4b2fed51
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6ccb90 on object Country[ancientCities=[],capital=<null>,cities=<null>,description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@12,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4b2fed51
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6ccb90 on object Country[ancientCities=[],capital=<null>,cities=[City[country=org.codefilarete.stalactite.engine.model.Country@45a91f81,id=o.c.s.i.PersistedIdentifier@42,name=Paris,persons=<null>,state=<null>]],description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@12,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Creating instance with org.codefilarete.stalactite.engine.runtime.load.JoinRoot$JoinRootRowConsumer@4b2fed51
2024-10-15 20:32:46	DEBUG	EntityTreeInflater	Consuming org.codefilarete.stalactite.engine.runtime.load.RelationJoinNode$DefaultRelationJoinRowConsumer@6ccb90 on object Country[ancientCities=[],capital=<null>,cities=[City[country=org.codefilarete.stalactite.engine.model.Country@45a91f81,id=o.c.s.i.PersistedIdentifier@42,name=Paris,persons=<null>,state=<null>], City[country=org.codefilarete.stalactite.engine.model.Country@45a91f81,id=o.c.s.i.PersistedIdentifier@43,name=Lyon,persons=<null>,state=<null>]],description=<null>,euMember=false,hasNuclearPower=false,id=o.c.s.i.PersistedIdentifier@12,languages=[],modificationDate=<null>,name=France,president=<null>,states=[],timestamp=<null>,version=0]
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table Country(name varchar(255), id bigint not null, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	create table City(name varchar(255), id bigint not null, countryId bigint, unique (id))
2024-10-15 20:32:46	DEBUG	DDLDeployer	alter table City add constraint FK_City_countryId_Country_id foreign key(countryId) references Country(id)
2024-10-15 20:32:46	DEBUG	SQLOperation	select Country.id as rootId from Country left outer join City as City on Country.id = City.countryId where Country.name = ? and City.name = ? | {1=France, 2=Grenoble}
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 s - in org.codefilarete.stalactite.query.EntityGraphSelectExecutorTest
[INFO] Running org.codefilarete.stalactite.id.PersistableIdentifierTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.codefilarete.stalactite.id.PersistableIdentifierTest
[INFO] Running org.codefilarete.stalactite.id.PersistedIdentifierTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in org.codefilarete.stalactite.id.PersistedIdentifierTest
[INFO] 
[INFO] Results:
[INFO] 
[ERROR] Errors: 
[ERROR]   JoinTablePolymorphismPersisterTest$CRUD.selectWhere_collectionCriteria:809 » SQLExecution Error while executing "select Toto.x as Toto_x, Toto.q as Toto_q, Toto.id as Toto_id, TotoA.id as TotoA_id, TotoB.id as TotoB_id from Toto left outer join TotoA on Toto.id = TotoA.id left outer join TotoB on Toto.id = TotoB.id where Toto.q = ?"
[ERROR]   SimpleRelationalEntityPersisterTest$CRUD.selectWhere_collectionCriteria:577 » SQLExecution Error while executing "select Toto.id as rootId from Toto where Toto.q = ?"
[ERROR]   SingleTablePolymorphismPersisterTest$CRUD.selectWhere_collectionCriteria:736 » SQLExecution Error while executing "select Toto.id as Toto_id, Toto.DTYPE as DISCRIMINATOR from Toto where Toto.q = ?"
[ERROR]   TablePerClassPolymorphismPersisterTest$CRUD.selectWhere_collectionCriteria:776 » SQLExecution Error while executing "select Toto.id as id, DISCRIMINATOR from ((select TotoA.id as id, TotoA.x as x, TotoA.q as q, 'TotoA' as DISCRIMINATOR from TotoA) union all (select TotoB.id as id, TotoB.x as x, TotoB.q as q, 'TotoB' as DISCRIMINATOR from TotoB)) as Toto where Toto.q = ?"
[INFO] 
[ERROR] Tests run: 614, Failures: 0, Errors: 4, Skipped: 0
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for Stalactite 2.0.1-SNAPSHOT:
[INFO] 
[INFO] Stalactite ......................................... SUCCESS [  0.684 s]
[INFO] sql ................................................ SUCCESS [  6.446 s]
[INFO] core ............................................... SUCCESS [  6.848 s]
[INFO] sql-adapter ........................................ SUCCESS [  0.182 s]
[INFO] sql-hsqldb-adapter ................................. SUCCESS [  3.186 s]
[INFO] core-adapter ....................................... SUCCESS [  0.007 s]
[INFO] core-hsqldb-adapter ................................ SUCCESS [  2.639 s]
[INFO] orm ................................................ FAILURE [ 27.716 s]
[INFO] spring-integration ................................. SKIPPED
[INFO] sql-derby-adapter .................................. SKIPPED
[INFO] sql-h2-adapter ..................................... SKIPPED
[INFO] sql-mariadb-adapter ................................ SKIPPED
[INFO] sql-mysql-adapter .................................. SKIPPED
[INFO] sql-oracle-adapter ................................. SKIPPED
[INFO] sql-postgresql-adapter ............................. SKIPPED
[INFO] sql-sqlite-adapter ................................. SKIPPED
[INFO] core-derby-adapter ................................. SKIPPED
[INFO] core-h2-adapter .................................... SKIPPED
[INFO] core-mariadb-adapter ............................... SKIPPED
[INFO] core-mysql-adapter ................................. SKIPPED
[INFO] core-oracle-adapter ................................ SKIPPED
[INFO] core-postgresql-adapter ............................ SKIPPED
[INFO] core-sqlite-adapter ................................ SKIPPED
[INFO] orm-adapter ........................................ SKIPPED
[INFO] orm-derby-adapter .................................. SKIPPED
[INFO] orm-h2-adapter ..................................... SKIPPED
[INFO] orm-hsqldb-adapter ................................. SKIPPED
[INFO] orm-mariadb-adapter ................................ SKIPPED
[INFO] orm-mysql-adapter .................................. SKIPPED
[INFO] orm-oracle-adapter ................................. SKIPPED
[INFO] orm-postgresql-adapter ............................. SKIPPED
[INFO] orm-sqlite-adapter ................................. SKIPPED
[INFO] orm-all-adapters ................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  47.909 s
[INFO] Finished at: 2024-10-15T20:32:46Z
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:3.0.0:test (default-test) on project orm: 
[ERROR] 
[ERROR] Please refer to /jenkins/work/agent-local/workspace/Stalactite pipeline/orm/target/surefire-reports for the individual test results.
[ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <args> -rf :orm
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Sonar Analysis)
Stage "Sonar Analysis" skipped due to earlier failure(s)
[Pipeline] getContext
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
ERROR: script returned exit code 1
Finished: FAILURE