Standard Output
2026-04-28 05:59:20 DEBUG DDLDeployer create table D(propC integer GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) not null, propD integer not null, propB integer not null, propA integer not null, unique (propC))
2026-04-28 05:59:20 DEBUG DDLDeployer create table E(propC integer not null, propE integer not null, unique (propC))
2026-04-28 05:59:20 DEBUG DDLDeployer alter table E add constraint FK_E_propC_D_propC foreign key(propC) references D(propC)
2026-04-28 05:59:20 DEBUG SQLOper
...[truncated 2429 chars]...
ect o.c.s.e.c.r.AggregateResolverTest$E#1
2026-04-28 05:59:20 DEBUG SQLOperation Batching statement 1 times
2026-04-28 05:59:20 TRACE SQLOperation delete from E where propC = ? | {1={E.propC=1}}
2026-04-28 05:59:20 DEBUG SQLOperation Batching statement 1 times
2026-04-28 05:59:20 TRACE SQLOperation delete from D where propC = ? | {1={D.propC=1}}
2026-04-28 05:59:20 TRACE SQLOperation select count(*) as count from E | {}
2026-04-28 05:59:20 TRACE SQLOperation select count(*) as count from D | {}