SQLConfiguration config = uow.get( SQLConfiguration.class,
PostgreSQLEntityStoreAssembler.DEFAULT_ENTITYSTORE_IDENTITY );
Connection connection = persistenceModule.findService( DataSource.class ).get().getConnection();
connection.setAutoCommit( false );
connection.setReadOnly( false );
String schemaName = config.schemaName().get();
if ( schemaName == null ) {
schemaName = SQLs.DEFAULT_SCHEMA_NAME;
}
Statement stmt = null;