From: <one...@us...> - 2002-12-19 11:29:06
|
Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/type In directory sc8-pr-cvs1:/tmp/cvs-serv3112/hibernate/type Modified Files: TimestampType.java Log Message: applied patches by Robson Miranda and Benoit Menendez and added delimiter to drop statements in SchemaExporter Index: TimestampType.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/type/TimestampType.java,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** TimestampType.java 18 Dec 2002 12:50:39 -0000 1.31 --- TimestampType.java 19 Dec 2002 11:29:03 -0000 1.32 *************** *** 46,51 **** if (x==null || y==null) return false; ! int xTime = ( (java.util.Date) x ).getTime(); ! int yTime = ( (java.util.Date) y ).getTime(); boolean xts = x instanceof Timestamp; boolean yts = y instanceof Timestamp; --- 46,51 ---- if (x==null || y==null) return false; ! long xTime = ( (java.util.Date) x ).getTime(); ! long yTime = ( (java.util.Date) y ).getTime(); boolean xts = x instanceof Timestamp; boolean yts = y instanceof Timestamp; |