From: <one...@us...> - 2002-12-24 13:45:42
|
Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/collections In directory sc8-pr-cvs1:/tmp/cvs-serv9038/hibernate/collections Modified Files: PersistentCollection.java Log Message: added cascade to PostgreSQL drop table applied Max Andersen exception message patch applied J Russel Smyth patch to allow setMaxResults() to sort of work on SAPDB fixed a bug where readonly bags did not always cascade save-update Index: PersistentCollection.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/collections/PersistentCollection.java,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** PersistentCollection.java 17 Dec 2002 09:43:18 -0000 1.78 --- PersistentCollection.java 24 Dec 2002 13:45:37 -0000 1.79 *************** *** 195,198 **** --- 195,202 ---- return additions!=null; } + + public final Iterator queuedAddsIterator() { + return additions.iterator(); + } final class IteratorProxy implements Iterator { |