From: <tho...@us...> - 2014-01-27 16:20:51
|
Revision: 7831 http://bigdata.svn.sourceforge.net/bigdata/?rev=7831&view=rev Author: thompsonbry Date: 2014-01-27 16:20:42 +0000 (Mon, 27 Jan 2014) Log Message: ----------- Fix to the implicit serialVersionUID for the FixedLengthValueRabaCoder. See #763 (Stochastic behavior in Analytic query mode). Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/btree/raba/codec/FixedLengthValueRabaCoder.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/btree/raba/codec/FixedLengthValueRabaCoder.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/btree/raba/codec/FixedLengthValueRabaCoder.java 2014-01-27 16:09:26 UTC (rev 7830) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/btree/raba/codec/FixedLengthValueRabaCoder.java 2014-01-27 16:20:42 UTC (rev 7831) @@ -76,6 +76,16 @@ */ public class FixedLengthValueRabaCoder implements IRabaCoder, Externalizable { + /** + * This is the historical implicit value. It has been made into an explicit + * value since the {@link IRabaCoder} API change to support duplicate keys + * for the HTree caused a change in the implict computed value. + * + * @see <a href="https://sourceforge.net/apps/trac/bigdata/ticket/763" > + * Stochastic Results With Analytic Query Mode </a> + */ + private static final long serialVersionUID = 5549200745262968226L; + private static final byte VERSION0 = 0x00; /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |