Return-Path: X-Original-To: apmail-openjpa-commits-archive@www.apache.org Delivered-To: apmail-openjpa-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 28AFDD499 for ; Thu, 18 Oct 2012 19:04:30 +0000 (UTC) Received: (qmail 75364 invoked by uid 500); 18 Oct 2012 19:04:30 -0000 Delivered-To: apmail-openjpa-commits-archive@openjpa.apache.org Received: (qmail 75196 invoked by uid 500); 18 Oct 2012 19:04:25 -0000 Mailing-List: contact commits-help@openjpa.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openjpa.apache.org Delivered-To: mailing list commits@openjpa.apache.org Received: (qmail 75138 invoked by uid 99); 18 Oct 2012 19:04:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2012 19:04:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2012 19:04:23 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id ED7AD2388A33 for ; Thu, 18 Oct 2012 19:03:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1399789 - /openjpa/trunk/openjpa-project/src/doc/manual/migration_considerations.xml Date: Thu, 18 Oct 2012 19:03:39 -0000 To: commits@openjpa.apache.org From: curtisr7@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121018190339.ED7AD2388A33@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: curtisr7 Date: Thu Oct 18 19:03:39 2012 New Revision: 1399789 URL: http://svn.apache.org/viewvc?rev=1399789&view=rev Log: OPENJPA-2280: Add text to the migration considerations for MappingTool changes. Modified: openjpa/trunk/openjpa-project/src/doc/manual/migration_considerations.xml Modified: openjpa/trunk/openjpa-project/src/doc/manual/migration_considerations.xml URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/migration_considerations.xml?rev=1399789&r1=1399788&r2=1399789&view=diff ============================================================================== --- openjpa/trunk/openjpa-project/src/doc/manual/migration_considerations.xml (original) +++ openjpa/trunk/openjpa-project/src/doc/manual/migration_considerations.xml Thu Oct 18 19:03:39 2012 @@ -499,4 +499,31 @@ +
+ + OpenJPA 2.3.0 + +
+ Incompatibilities + + The following sections indicate changes that are incompatible + between OpenJPA 2.2.x releases and the 2.3.0 release. + +
+ + MappingTool Behavior for DB2 and Derby + + + In previous releases, the MappingTool mapped java.math.BigDecimal fields to the database type + DOUBLE, and as such, ignored column and precision values that might have been specified via the + javax.persistence.Column annotation. + + + From the 2.3.0 release, java.math.BigDecimal fields are now mapped to the database type DECIMAL + and it is very likely that you will need to specify column and precision via + the javax.persistence.Column annotation. + +
+
+