[Mulgara-svn] r1144 - trunk/src/jar/store-stringpool/java/org/mulgara/store/stringpool/xa

ronald at mulgara.org ronald at mulgara.org
Sat Aug 16 01:31:52 UTC 2008


Author: ronald
Date: 2008-08-15 18:31:51 -0700 (Fri, 15 Aug 2008)
New Revision: 1144

Modified:
   trunk/src/jar/store-stringpool/java/org/mulgara/store/stringpool/xa/SPDateImpl.java
Log:
Added backwards compatibility support to be able to decode on-disk dates
from before r1081.


Modified: trunk/src/jar/store-stringpool/java/org/mulgara/store/stringpool/xa/SPDateImpl.java
===================================================================
--- trunk/src/jar/store-stringpool/java/org/mulgara/store/stringpool/xa/SPDateImpl.java	2008-08-15 18:52:18 UTC (rev 1143)
+++ trunk/src/jar/store-stringpool/java/org/mulgara/store/stringpool/xa/SPDateImpl.java	2008-08-16 01:31:51 UTC (rev 1144)
@@ -115,7 +115,7 @@
 
 
   SPDateImpl(ByteBuffer data) {
-    this(data.getLong(), data.getInt());
+    this(data.getLong(), (data.limit() > Constants.SIZEOF_LONG) ? data.getInt() : 0);
   }
 
 




More information about the Mulgara-svn mailing list