You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by rh...@apache.org on 2013/03/25 17:18:31 UTC

svn commit: r1460743 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/Price.java

Author: rhillegas
Date: Mon Mar 25 16:18:30 2013
New Revision: 1460743

URL: http://svn.apache.org/r1460743
Log:
DERBY-6124: Add serialVersionUID to Price UDT.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/Price.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/Price.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/Price.java?rev=1460743&r1=1460742&r2=1460743&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/Price.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/Price.java Mon Mar 25 16:18:30 2013
@@ -33,6 +33,9 @@ import java.sql.Timestamp;
  */
 public class Price implements Externalizable
 {
+    // this changed between 10.9 and 10.10 so require the 10.9 value
+    private static final long serialVersionUID = 102726277789621992L;
+    
     // initial version id
     private static final int FIRST_VERSION = 0;
     private static final int TIMESTAMPED_VERSION = FIRST_VERSION + 1;