// as a control measure, now update the node while it is detached and
// make sure we get an update as a result...
node.setDescription( "new description" );
SimpleJtaTransactionManagerImpl.getInstance().begin();
s = openSession();
node = ( Node ) s.merge( node );
s = applyNonFlushedChangesToNewSessionCloseOldSession( s );
SimpleJtaTransactionManagerImpl.getInstance().commit();
assertUpdateCount( 1 );
assertInsertCount( 0 );
///////////////////////////////////////////////////////////////////////