You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by mi...@apache.org on 2011/07/21 23:52:06 UTC

svn commit: r1149380 - /openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_runtime.xml

Author: mikedd
Date: Thu Jul 21 21:52:05 2011
New Revision: 1149380

URL: http://svn.apache.org/viewvc?rev=1149380&view=rev
Log:
OPENJPA-1343: Fix openjpa.Sequence example.
Submitted By: Jacob Nowosatka

Modified:
    openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_runtime.xml

Modified: openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_runtime.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_runtime.xml?rev=1149380&r1=1149379&r2=1149380&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_runtime.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_runtime.xml Thu Jul 21 21:52:05 2011
@@ -1740,6 +1740,9 @@ a sequence name in the <literal>Sequence
 </programlisting>
         </example>
         <para>
+<!-- OPENJPA-1343: It seems that this only works with the time and 
+sjvm aliases. This due to an issue that was brought up in OPENJPA-1642
+Custom sequences may or may not work depending on their nature.-->
 OpenJPA maintains a <emphasis>system</emphasis> sequence to generate datastore
 identity values for classes that do not declare a specific datastore identity
 strategy. You can configure the system sequence through the
@@ -1752,7 +1755,7 @@ configuration property. This property ac
                 System Sequence Configuration
             </title>
 <programlisting>
-&lt;property name="openjpa.Sequence" value="table(Table=OPENJPASEQ, Increment=100)"/&gt;
+&lt;property name="openjpa.Sequence" value="time(Increment=100)"/&gt;
 </programlisting>
         </example>
         <para>